
/* --- Product Page Luxury Overhaul --- */
.product-detail-page {
    padding: 100px 0;
    margin-top: 112px; /* Adjusted for navbar + announcement height */
    background: #FFFAF5; /* Soft creamy background */
}


.product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

/* --- Advanced Gallery --- */
.product-gallery {
    position: sticky;
    top: 120px;
    display: flex;
    gap: 20px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.gallery-main {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    aspect-ratio: 4/5;
    border: 1px solid rgba(0,0,0,0.03);
}


.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Info Side --- */
.p-header h1 {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.p-header .badge {
    font-size: 11px;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.p-header .badge:nth-child(2) {
    background: var(--color-secondary);
}


.p-price-wrap {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 20px 0;
}

.currency-symbol {
    font-family: var(--font-body);
    font-weight: 500;
    margin-right: 2px;
}

.p-solution {
    padding: 24px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid #eee;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.p-solution strong {
    color: #111;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-key-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.p-key-points li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    align-items: flex-start;
}

.pkp-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.pkp-text strong {
    display: inline-block;
    color: #111;
    margin-right: 4px;
}

/* --- Options / Pills --- */
.option-group {
    margin-bottom: 32px;
}

.option-group h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #999;
    margin-bottom: 16px;
}

.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    padding: 10px 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.pill:hover {
    border-color: var(--color-secondary);
    background: var(--color-cream);
}

.pill.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* --- Actions --- */
.p-actions {
    display: grid;
    grid-template-columns: 1fr 60px;
    gap: 12px;
    margin: 40px 0;
}

.btn-add-bag {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-add-bag:hover {
    background: #000;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}


.btn-wishlist {
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

/* --- FAQ Section --- */
.sect-product-faq {
    padding: 100px 0;
    background: #fff;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question .chevron {
    transition: transform 0.3s ease;
    color: var(--color-secondary);
}

.faq-item.active .faq-question .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* --- Radical Difference Section --- */
.sect-radical-difference {
    padding: 100px 0;
    background: #111;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.sect-radical-difference::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.rd-content-v2 {
    max-width: 1000px;
    margin: 0 auto;
}

.rd-text-group {
    margin-bottom: 60px;
}

.eyebrow-v2 {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.rd-text-group h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff; /* Explicitly set to white to avoid inheriting dark primary color */
}

.rd-text-group h2 em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary);
}

.rd-lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
}

.rd-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.rd-step-v2 {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.rd-step-v2:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.rd-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    line-height: 1;
    opacity: 0.5;
}

.rd-step-v2 strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #fff;
}

.rd-step-v2 p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.rd-footer-v2 {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 500;
}

/* --- Technical Craftsmanship Section --- */
.sect-product-technicals {
    padding: 120px 0;
    background: #FFFAF5;
}

.tech-grid-v2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.section-title-minimal {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.section-title-minimal em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary);
}

.p-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--color-secondary-light);
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
}

.accordion-header .chevron {
    transition: transform 0.3s ease;
    color: var(--color-secondary);
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.details-sub-grid {
    padding: 0 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.details-group h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary-dark);
    margin-bottom: 16px;
}

.details-group ul {
    list-style: none;
    padding: 0;
}

.details-group li {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.details-group li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.p-longevity-box, .p-box-contents {
    padding: 0 32px 32px;
}

.p-longevity-box ul, .p-box-contents ul {
    list-style: none;
    padding: 0;
}

.p-longevity-box li, .p-box-contents li {
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-longevity-box li::before, .p-box-contents li::before {
    content: '✦';
    color: var(--color-secondary);
}

.btn-pdf {
    color: var(--color-secondary-dark);
    text-decoration: underline;
    font-weight: 600;
}

.tech-side-col {
    position: sticky;
    top: 120px;
}

.technical-specs-v2 {
    display: grid;
    gap: 16px;
}

.spec-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
}

/* --- Video Proof Section --- */
.sect-video-proof {
    padding: 100px 0;
    background: #fff;
}

.video-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-proof-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.video-proof-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.video-container {
    position: relative;
    aspect-ratio: 16/10;
    background: #000;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.video-proof-card:hover .play-overlay {
    background: rgba(0,0,0,0);
}

.video-info {
    padding: 24px;
}

.video-info h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.video-info p {
    font-size: 14px;
    color: #666;
}

/* --- Video Testimonials Marquee --- */
.section-testimonials-v2 {
    position: relative;
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

.marquee-bg-glossy {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #fdfbf7, #f4eee6, #faecd4, #fdfbf7);
    background-size: 300% 300%;
    animation: glossyFlow 12s ease infinite;
    opacity: 0.9;
}

.video-marquee-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.video-marquee-track {
    display: flex;
    gap: 30px;
    animation: marqueeSlideLR 40s linear infinite;
    width: max-content;
}

@keyframes marqueeSlideLR {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.marquee-video-item {
    width: 280px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.marquee-video-item:hover {
    transform: scale(1.05) translateY(-10px);
}

.marquee-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Related Products Section --- */
.sect-related-products {
    padding: 100px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* --- Responsive fixes --- */
@media (max-width: 1024px) {
    .product-split { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { 
        position: relative; 
        top: 0; 
        flex-direction: column-reverse; /* Thumbnails below main image on mobile */
    }
    .gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .thumbnail {
        flex: 0 0 60px;
        height: 60px;
    }
    .gallery-main {
        aspect-ratio: 1; /* Squarer for mobile */
    }
    .tech-grid-v2 { grid-template-columns: 1fr; }
    .tech-side-col { position: relative; top: 0; }
    .rd-steps-grid { grid-template-columns: 1fr; }
    .video-proof-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
}


.gallery-video { width: 100%; border-radius: 12px; height: auto; display: block; } .video-thumb { position: relative; } .thumb-video-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,0.5); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; z-index: 2; pointer-events: none; } .video-thumb video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
