        /* Specific Product Styles */
        body {
            padding-top: 80px; /* Space for fixed header */
            background: #0d0d0d;
        }

        /* Force header to have background on product page */
        .header {
            background: rgba(13, 13, 13, 0.95) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* NEW HORIZONTAL LAYOUT */
        .product-container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* TOP SECTION - FULL-WIDTH PHOTO SHOWCASE */
        .product-image-wrapper {
            position: relative;
            background: #000;
            width: 100%;
            min-height: calc(100vh - 80px); /* Full viewport minus header */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .image-slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-card {
            display: none;
            width: 100%;
            text-align: center;
        }

        .image-card.active {
            display: block;
        }

        .image-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(212, 175, 55, 0.9);
            color: #0d0d0d;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
        }

        /* Close/Back Button - Distinct X design */
        .product-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(13, 13, 13, 0.8);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(212, 175, 55, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            transition: all 0.3s;
        }

        .product-close:hover {
            background: rgba(212, 175, 55, 1);
            border-color: #d4af37;
            transform: rotate(90deg);
        }

        .product-close svg {
            width: 24px;
            height: 24px;
            color: #fff;
            stroke: #fff;
            stroke-width: 2.5;
        }

        .product-close:hover svg {
            color: #0d0d0d;
            stroke: #0d0d0d;
        }

        .product-image {
            max-width: 100%;
            max-height: calc(100vh - 200px); /* Full height minus padding */
            width: auto;
            height: auto;
            box-shadow: 0 40px 100px rgba(0,0,0,0.8);
            object-fit: contain;
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(212, 175, 55, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s;
        }

        .slider-nav:hover {
            background: #d4af37;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 10px;
        }

        .slider-nav.next {
            right: 10px;
        }

        .slider-nav svg {
            width: 24px;
            height: 24px;
            stroke: #000;
            stroke-width: 2;
        }

        .slider-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Image counter */
        .image-counter {
            position: absolute;
            top: 80px;
            left: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            z-index: 10;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 24px;
            height: 24px;
            stroke: rgba(212, 175, 55, 0.7);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* BOTTOM SECTION - PRODUCT DETAILS */
        .product-details {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px 100px;
            background: #0d0d0d;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: start;
        }

        .product-details__content {
            /* Left column: title + description */
        }

        .product-details__sidebar {
            /* Right column: specs + CTA */
            position: sticky;
            top: 100px;
        }

        .product-collection {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            color: #d4af37;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .product-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            margin: 0 0 30px;
            line-height: 1.1;
            color: #fff;
        }

        .product-description {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 50px;
        }

        .product-specs {
            margin-bottom: 30px;
            padding: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 4px;
            background: rgba(255,255,255,0.02);
        }

        .product-specs--technical {
            background: rgba(212, 175, 55, 0.03);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .specs-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #d4af37;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .spec-row:last-child { border-bottom: none; }

        .spec-label {
            color: #888;
            font-size: 0.9rem;
        }

        .spec-value {
            color: #fff;
            font-weight: 500;
            text-align: right;
        }

        /* Series Badge */
        .spec-value--badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .spec-value--badge.premium {
            background: rgba(212, 175, 55, 0.2);
            color: #d4af37;
            border: 1px solid rgba(212, 175, 55, 0.4);
        }

        .spec-value--badge.prestige {
            background: rgba(138, 43, 226, 0.2);
            color: #b19cd9;
            border: 1px solid rgba(138, 43, 226, 0.4);
        }

        /* Tags */
        .spec-value--tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: flex-end;
        }

        .tag {
            display: inline-block;
            padding: 3px 8px;
            background: rgba(255,255,255,0.08);
            border-radius: 8px;
            font-size: 0.75rem;
            color: #ccc;
        }

        /* Contact Section */
        .contact-section {
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            padding: 30px;
            border-radius: 4px;
        }

        .contact-section h3 {
            color: #d4af37;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 0 10px 0;
            font-weight: 600;
        }

        .contact-section p {
            color: #ccc;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0 0 25px 0;
        }

        .contact-btn {
            width: 100%;
            padding: 20px;
            background: #d4af37;
            color: #000;
            border: none;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border-radius: 4px;
        }

        .contact-btn:hover {
            background: #f0c64e;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .contact-btn svg {
            width: 20px;
            height: 20px;
        }

        /* RESPONSIVE - MOBILE */
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }

            .product-image-wrapper {
                min-height: 70vh;
                padding: 80px 15px 15px;
            }

            .product-image {
                max-height: 60vh;
            }

            .product-close {
                width: 44px;
                height: 44px;
                top: 75px;
                right: 15px;
            }

            .product-close svg {
                width: 20px;
                height: 20px;
            }

            .image-label {
                top: 75px;
                left: 15px;
                font-size: 0.75rem;
                padding: 6px 12px;
            }

            .image-counter {
                top: 130px;
                left: 15px;
                font-size: 0.7rem;
                padding: 5px 10px;
            }

            .product-details {
                padding: 40px 20px 60px;
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .product-details__sidebar {
                position: static;
            }

            .product-title {
                font-size: 2rem;
            }

            .product-description {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
            }

            .slider-nav.prev {
                left: 5px;
            }

            .slider-nav.next {
                right: 5px;
            }

            .scroll-indicator {
                bottom: 30px;
            }

            .finition-card__name {
                font-size: 1rem;
            }

            .finition-card__badge {
                font-size: 0.7rem;
                padding: 3px 8px;
            }

            .contact-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ==================================================
           PRICING SECTION
           ================================================== */

        .pricing-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 30px;
            margin-top: 30px;
        }

        .pricing-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: #d4af37;
            margin: 0 0 8px;
        }

        .pricing-subtitle {
            color: #999;
            font-size: 0.95rem;
            margin: 0 0 25px;
            line-height: 1.5;
        }

        /* Size Options */
        .pricing-sizes {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 25px;
        }

        .size-option {
            display: flex;
            align-items: center;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .size-option:hover:not(.size-option--sold-out) {
            border-color: rgba(212, 175, 55, 0.4);
            background: rgba(212, 175, 55, 0.05);
        }

        .size-option--sold-out {
            opacity: 0.4;
            cursor: not-allowed;
            background: rgba(255, 255, 255, 0.01);
        }

        .size-option input[type="radio"] {
            margin-right: 15px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .size-option--sold-out input[type="radio"] {
            cursor: not-allowed;
        }

        .size-details {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .size-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .size-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
        }

        .size-category {
            font-size: 0.85rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .size-price-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }

        .size-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #d4af37;
        }

        .size-availability {
            font-size: 0.85rem;
            color: #10b981;
        }

        .size-availability.sold-out {
            color: #ef4444;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Finition Options */
        .pricing-finitions {
            margin-bottom: 25px;
        }

        .finitions-title {
            font-size: 1.1rem;
            color: #fff;
            margin: 0 0 12px;
        }

        .finition-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .finition-option {
            display: flex;
            align-items: center;
            padding: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.95rem;
        }

        .finition-option:hover {
            border-color: rgba(212, 175, 55, 0.3);
            background: rgba(212, 175, 55, 0.05);
        }

        .finition-option input[type="radio"] {
            margin-right: 10px;
            cursor: pointer;
        }

        /* Price Total */
        .pricing-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .pricing-total-label {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
        }

        .pricing-total-amount {
            font-size: 2rem;
            font-weight: 700;
            color: #d4af37;
            font-family: 'Cormorant Garamond', serif;
        }

        /* Add to Cart Button */
        .btn-add-cart {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 30px;
            background: #d4af37;
            color: #0d0d0d;
            border: none;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-add-cart:hover {
            background: #e5c04a;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .btn-add-cart:active {
            transform: translateY(0);
        }

        .btn-add-cart:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* Pricing Info */
        .pricing-info {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .pricing-info p {
            color: #999;
            font-size: 0.9rem;
            margin: 8px 0;
            line-height: 1.5;
        }

        /* ==================================================
           PRODUCT CONFIGURATION (Left Column)
           ================================================== */

        .product-configuration {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .config-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: #d4af37;
            margin: 0 0 8px;
        }

        .config-subtitle {
            color: #888;
            font-size: 0.9rem;
            margin: 0 0 25px;
            line-height: 1.5;
        }

        /* Compact Size Grid */
        .config-sizes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .config-sizes .size-option {
            flex-direction: column;
            padding: 12px;
            text-align: center;
        }

        .config-sizes .size-option input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .config-sizes .size-option.selected {
            border-color: #d4af37;
            background: rgba(212, 175, 55, 0.1);
        }

        .config-sizes .size-details {
            flex-direction: column;
            gap: 6px;
        }

        .config-sizes .size-info {
            align-items: center;
        }

        .config-sizes .size-label {
            font-size: 1rem;
        }

        .config-sizes .size-category {
            display: none;
        }

        .config-sizes .size-price-info {
            align-items: center;
        }

        .config-sizes .size-price {
            font-size: 1.1rem;
        }

        .config-sizes .size-availability {
            font-size: 0.75rem;
        }

        /* Finition in config */
        .config-finitions {
            margin-bottom: 0;
        }

        .config-finitions-title {
            font-size: 1rem;
            color: #fff;
            margin: 0 0 12px;
            font-weight: 600;
        }

        .config-finitions .finition-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .config-finitions .finition-option {
            padding: 10px 8px;
            font-size: 0.85rem;
            justify-content: center;
        }

        .config-finitions .finition-option input[type="radio"] {
            display: none;
        }

        .config-finitions .finition-option.selected {
            border-color: #d4af37;
            background: rgba(212, 175, 55, 0.1);
        }

        /* ==================================================
           PRICING SUMMARY (Sidebar - Compact)
           ================================================== */

        .pricing-summary {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
        }

        .selected-config {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .selected-size {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
        }

        .selected-finition {
            font-size: 0.9rem;
            color: #d4af37;
            padding: 4px 10px;
            background: rgba(212, 175, 55, 0.15);
            border-radius: 4px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .pricing-section {
                padding: 20px;
            }

            .pricing-title {
                font-size: 1.5rem;
            }

            .size-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .size-price-info {
                align-items: flex-start;
            }

            .finition-options {
                grid-template-columns: 1fr;
            }

            .pricing-total {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            .pricing-total-amount {
                font-size: 1.8rem;
            }

            .btn-add-cart {
                font-size: 1rem;
                padding: 16px;
            }

            /* Config section mobile */
            .config-sizes {
                grid-template-columns: repeat(2, 1fr);
            }

            .config-finitions .finition-options {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-summary {
                padding: 20px;
            }

            .selected-config {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }
        }

        /* ==================================================
           PRODUCT FINITIONS SECTION
           ================================================== */

        .product-finitions {
            background: #0d0d0d;
            padding: 80px 20px;
            margin-top: 60px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .product-finitions__container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Header */
        .product-finitions__header {
            text-align: center;
            margin-bottom: 50px;
        }

        .product-finitions__subtitle {
            display: block;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.8rem;
            color: #d4af37;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .product-finitions__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: #fff;
            margin: 0 0 15px;
            font-weight: 400;
        }

        .product-finitions__description {
            font-size: 1rem;
            color: #999;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Grid */
        .product-finitions__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        @media (min-width: 768px) {
            .product-finitions__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Finition Card */
        .finition-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .finition-card:hover {
            border-color: rgba(212, 175, 55, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .finition-card__image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            background: #000;
        }

        .finition-card__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .finition-card:hover .finition-card__image {
            transform: scale(1.05);
        }

        .finition-card__content {
            padding: 20px;
            text-align: center;
        }

        .finition-card__name {
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
            margin: 0 0 10px;
            line-height: 1.3;
        }

        .finition-card__badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            background: rgba(255,255,255,0.1);
            color: #ccc;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .finition-card__badge--popular {
            background: rgba(212, 175, 55, 0.2);
            color: #d4af37;
            border-color: rgba(212, 175, 55, 0.4);
        }

        .finition-card__badge--premium {
            background: rgba(138, 43, 226, 0.2);
            color: #b19cd9;
            border-color: rgba(138, 43, 226, 0.4);
        }

        /* Footer CTA */
        .product-finitions__footer {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .product-finitions__help-text {
            font-size: 1rem;
            color: #999;
            margin: 0 0 25px;
        }

        .product-finitions__cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: #d4af37;
            color: #000;
            border: none;
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .product-finitions__cta:hover {
            background: #e5c04a;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .product-finitions__cta svg {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 768px) {
            .product-finitions {
                padding: 60px 20px;
            }

            .product-finitions__title {
                font-size: 2rem;
            }

            .product-finitions__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .product-finitions__cta {
                width: 100%;
                justify-content: center;
            }
        }
