    /* Ensure navbar stays black */
    #header {
        background-color: #000;
    }
    
    #header .header-bg {
        background-color: #000;
        transform: none;
    }
    
    .nav-links li a {
        color: #fff;
    }
    
    #hamburger .bar {
        background-color: #fff !important;
    }
    
    #menu-background {
        background-color: #000;
    }
    
    #menu-navigation .nav-links a {
        color: #fff;
    }
    
    body {
        background-color: #fff;
        color: #000;
    }
    
    .detail-container {
        width: 100%;
        max-width: 1300px;
        margin: 100px auto;
        background-color: transparent;
        border-radius: 8px;
        box-shadow: none;
    }

    .breadcrumb {
        font-size: 14px;
        margin-bottom: 20px;
        color: #555;
    }

    .breadcrumb a {
        color: #000;
        text-decoration: none;
    }

    .breadcrumb span {
        color: #000;
        font-weight: bold;
    }

    .product-detail {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        background-color: transparent;
    }

    .product-images {
        flex: 1;
        position: relative;
    }

    .main-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: contain;
        background-color: #f9f9f9;
        cursor: zoom-in;
        transition: transform 0.3s ease;
    }
    
    .main-image:hover {
        transform: scale(1.02);
    }
    
    .main-image-container {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 10px;
        height: 400px; /* Fixed height for consistent layout */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f9f9f9;
        border: 1px solid #eee;
    }
    
    /* Thumbnail styles */
    .thumbnail-images {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .thumbnail-wrapper {
        width: 70px;
        height: 70px;
        min-width: 70px; /* Ensure consistent width even on small screens */
        border: 2px solid #ddd;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .thumbnail-wrapper.active {
        border-color: #000;
    }
    
    .thumbnail {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }
    
    .thumbnail-wrapper:hover {
        border-color: #999;
    }
    
    .thumbnail-wrapper:hover .thumbnail {
        opacity: 0.8;
    }
    
    /* Fancybox custom styles */
    .fancybox__container {
        --fancybox-bg: rgba(0, 0, 0, 0.95);
    }
    
    .fancybox__toolbar {
        --fancybox-color: #fff;
    }
    
    .fancybox__nav {
        --fancybox-color: #fff;
    }
    
    .product-info {
        flex: 1.5;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 400px;
        background-color: transparent;
    }

    .product-info-top {
        align-self: flex-start;
        width: 100%;
    }

    .product-info-bottom {
        align-self: flex-end;
        width: 100%;
        margin-top: 20px;
    }

    .product-info h1 {
        font-size: 60px;
        margin-bottom: 15px;
        color: #000;
        align-self: flex-start;
    }
    
    .product-description {
        display: flex;
        align-self: flex-start;
        margin-bottom: 20px;
        color: #000;
        line-height: 1.6;
        max-width: 90%;
    }

    .product-price {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 500;
    }
    
    .price-label {
        margin-right: 10px;
        font-weight: 600;
    }
    
    .price-amount {
        color: #000;
        font-family: 'Space Grotesk', sans-serif;
    }

    /* Discount and price styling */
    .product-price-container {
        display: flex;
        flex-direction: column;
        align-items: left;
        margin-bottom: 20px;
        position: relative;
    }

    .discount-badge {
        background-color: #000000;
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-weight: bold;
        font-size: 16px;
        margin-right: 15px;
        font-family: 'Space Grotesk', sans-serif;
    }

    .original-price {
        text-decoration: line-through;
        color: #888;
        margin-right: 15px;
        font-size: 20px;
    }

    .sale-price {
        color: #000000;
        font-size: 28px;
        font-weight: bold;
        font-family: 'Space Grotesk', sans-serif;
    }

    .regular-price {
        font-size: 28px;
        font-weight: bold;
        color: #000;
        font-family: 'Space Grotesk', sans-serif;
    }

    .price-details {
        margin-top: 10px;
        margin-bottom: 25px;
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 5px;
        border-left: 3px solid #ddd;
    }

    .price-details h3 {
        font-size: 16px;
        margin-bottom: 10px;
        color: #555;
    }

    .price-details ul {
        list-style: none;
        padding-left: 5px;
    }

    .price-details li {
        margin-bottom: 5px;
        position: relative;
        padding-left: 15px;
        font-size: 14px;
    }

    .price-details li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #555;
    }
    
    .read-more-price {
        display: inline-block;
        margin-top: 10px;
        color: #000;
        font-weight: 500;
        text-decoration: none;
        font-size: 14px;
        position: relative;
        padding-right: 20px;
    }
    
    .read-more-price::after {
        content: '→';
        position: absolute;
        right: 0;
        top: 0;
        transition: transform 0.3s ease;
    }
    
    .read-more-price:hover {
        text-decoration: underline;
    }
    
    .read-more-price:hover::after {
        transform: translateX(5px);
    }

    .sku {
        font-size: 14px;
        color: #555;
        align-self: flex-start;
        margin-bottom: 15px;
    }
    
    .dates-info {
        margin-bottom: 20px;
    }
    
    .upload-date {
        font-size: 14px;
        color: #555;
        align-self: flex-start;
        margin-bottom: 5px;
        font-style: italic;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .upload-date i {
        color: #000;
        font-size: 14px;
    }

    .price {
        font-size: 30px;
        color: #fff;
        margin-bottom: 10px;
    }

    .payment-info {
        font-size: 14px;
        color: #fff;
    }

    .payment-info a {
        text-decoration: none;
        color: #fff;
    }

    .options {
        margin-bottom: 20px;
        border-bottom: 1px solid #333;
        padding-bottom: 20px;
    }

    .option-label {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .option-buttons {
        display: flex;
        gap: 10px;
    }

    .option-buttons button {
        padding: 10px 20px;
        border: 1px solid #444;
        background: #222;
        color: #fff;
        cursor: pointer;
        border-radius: 5px;
        font-size: 14px;
    }

    .option-buttons button.active {
        border-color: #fff;
        background: #fff;
        color: #000;
        font-weight: bold;
    }

    /* Actions */
    .actions_wrapper {
        display: flex;
        padding-bottom: 20px;
        align-self: flex-end;
        margin-top: auto;
        justify-content: flex-end;
        width: 100%;
    }

    .actions {
        display: flex;
        gap: 20px;
    }

    .actions button, .actions a {
        display: inline-block;
        padding: 10px 20px;
        border: 1px solid #000;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
        overflow: hidden;
        z-index: 100;
        font-family: 'Space Grotesk', sans-serif;
        text-decoration: none;
        color: #000;
        background-color: transparent;
    }

    .actions button::after, .actions a::after {
        background: #000;
        content: "";
        position: absolute;
        z-index: -1;
        height: 100%;
        left: 0;
        top: 0;
        width: 100%;
        transform-origin: top center;
        transform: scale3d(1, 0, 1);
        transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .actions button:hover, .actions a:hover {
        color: #fff;
    }

    .actions button:hover::after, .actions a:hover::after {
        height: 100%;
        width: 100%;
        transform: scale3d(1, 1, 1);
        transform-origin: bottom center;
    }

    .inquire-now, .contact-us {
        background-color: transparent;
        color: #000;
    }
    
    .inquire-now:hover, .contact-us:hover {
        background-color: transparent;
        color: #fff;
    }

    .additional-info {
        font-size: 14px;
        margin-top: 20px;
        border-bottom: 1px solid #333;
        padding-bottom: 20px;
        color: #fff;
    }

    /* Tabs for Additional Info */
    .tabs {
        margin-top: 20px;
        border-bottom: none;
    }

    .tabs button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        margin-right: 20px;
        padding: 10px 0;
        border-bottom: none;
        color: #000;
        position: relative;
        overflow: hidden;
    }

    .tabs button::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .tabs button.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .tabs button:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .tabs button.active {
        border-color: transparent;
        color: #000;
        font-weight: bold;
    }

    .tab-content {
        margin-top: 20px;
        font-size: 14px;
        color: #000;
        line-height: 1.8;
        background-color: transparent;
    }

    .features-list, .specs-list {
        list-style-type: none;
        padding-left: 0;
    }

    .features-list li, .specs-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
    }

    .features-list li:before, .specs-list li:before {
        content: '•';
        position: absolute;
        left: 0;
        color: #000;
    }
    
    .price-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .price-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
    }
    
    .price-list li:before {
        content: '•';
        position: absolute;
        left: 0;
        color: #000;
        font-weight: bold;
    }

    .models-section {
        margin-top: 40px;
    }

    .models-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
        color: #000;
    }
    .models-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .model-card {
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        background-color: transparent;
    }

    .model-header {
        background-color: #000;
        color: #fff;
        padding: 10px 15px;
    }

    .model-content {
        padding: 15px;
        color: #000;
        background-color: transparent;
    }

    .model-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    
    .model-price {
        font-size: 18px;
        font-weight: 600;
        margin: 10px 0;
        color: #000;
        font-family: 'Space Grotesk', sans-serif;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .product-detail {
            flex-direction: column;
        }

        .product-images, .product-info {
            flex: none;
            width: 100%;
        }

        .product-info {
            min-height: auto;
        }

        .product-info-bottom {
            margin-top: 30px;
        }

        .actions_wrapper {
            justify-content: flex-start;
        }

        .actions {
            width: 100%;
        }
        
        .actions a {
            flex: 1;
            text-align: center;
        }

        .tabs {
            display: flex;
            flex-wrap: wrap;
        }

        .tabs button {
            margin-bottom: 10px;
        }

        .models-grid, .related-products-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
    }
    
    /* Add responsive container max-width styles to match main site */
    @media (min-width: 1400px) {
        .detail-container {
            max-width: 1320px;
        }
    }
    
    @media (min-width: 1200px) and (max-width: 1399px) {
        .detail-container {
            max-width: 1140px;
        }
    }
    
    @media (min-width: 992px) and (max-width: 1199px) {
        .detail-container {
            max-width: 960px;
        }
    }
    
    @media (min-width: 768px) and (max-width: 991px) {
        .detail-container {
            max-width: 720px;
        }
    }
    
    @media (min-width: 576px) and (max-width: 767px) {
        .detail-container {
            max-width: 540px;
        }
    }
    
    @media (max-width: 576px) {
        .detail-container {
            width: 100%;
            padding: 15px;
            margin: 60px auto;
        }

        .breadcrumb{
        font-size: 11px;
        margin: 10px;
    }
    
        
        .product-detail-left h1 {
            font-size: 24px;
        }

        .main-image-container{
            background-color: transparent;
            border: none;
        }

        .thumbnail-images{
            padding: 5px;
        }

        .thumbnail-wrapper{
            width: 60px;
            height: 60px;
            min-width: 60px;
        }

        .tabs{
            border-bottom: none;
        }
    }

    /* Update model inquire button style */
    .model-content .inquire-now {
        border: 1px solid #000;
        background-color: transparent;
        color: #000;
    }

    .model-content .inquire-now::after {
        background: #000;
    }

    .model-content .inquire-now:hover {
        color: #fff;
    }

    /* Update related product button style */
    .related-product-info a {
        border: 1px solid #000;
        background-color: transparent;
        color: #000;
    }

    .related-product-info a::after {
        background: #000;
    }

    .related-product-info a:hover {
        color: #fff;
    }