/* ============================================
   PRODUCT PAGE - Maillot Askim
   ============================================ */

.product-page {
    min-height: 100vh;
    padding: 120px 5% 80px;
    background: #0a0a0a;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #e74c3c;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

/* Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* ============================
   GALLERY
   ============================ */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: zoom-in;
    aspect-ratio: 1;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.gallery-zoom-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s;
}

.gallery-main:hover .gallery-zoom-hint {
    opacity: 0;
}

.gallery-thumbs {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #111;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover {
    border-color: rgba(231, 76, 60, 0.5);
}

.thumb.active {
    border-color: #e74c3c;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.3);
}

/* ============================
   PRODUCT DETAILS
   ============================ */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Badges */
.product-badge-row {
    display: flex;
    gap: 0.6rem;
}

.badge-new,
.badge-unisex {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-new {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
}

.badge-unisex {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Title */
.product-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.title-script {
    color: #e74c3c;
    font-weight: 700;
}

/* Price */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.current-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
}

.old-price {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

/* Description */
.product-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e74c3c;
    flex-shrink: 0;
}

/* ============================
   SIZE SELECTOR
   ============================ */
.size-selector {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size-header label {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.size-guide-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.size-guide-btn:hover {
    color: #ff6b6b;
}

.size-options {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.size-btn {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover {
    border-color: rgba(231, 76, 60, 0.5);
    color: #fff;
    background: rgba(231, 76, 60, 0.08);
}

.size-btn.active {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.15);
    color: #fff;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.2);
}

.size-error {
    color: #e74c3c;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================
   QUANTITY
   ============================ */
.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.quantity-selector label {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    align-self: flex-start;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

#qtyInput {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    -moz-appearance: textfield;
    outline: none;
}

#qtyInput::-webkit-inner-spin-button,
#qtyInput::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* ============================
   ADD TO CART BUTTON
   ============================ */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.3rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.45);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Cart Confirmation */
.cart-confirmation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #22c55e;
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.cart-confirmation.show {
    opacity: 1;
    transform: translateY(0);
}

/* Extra Info */
.product-extra-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.extra-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.extra-row svg {
    stroke: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* ============================
   SIZE GUIDE MODAL
   ============================ */
.size-guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.size-guide-modal.open {
    opacity: 1;
    visibility: visible;
}

.size-guide-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 550px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.size-guide-modal.open .size-guide-content {
    transform: scale(1);
}

.size-guide-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.size-guide-close:hover {
    color: #e74c3c;
}

.size-guide-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.size-guide-content > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.size-guide-content table {
    width: 100%;
    border-collapse: collapse;
}

.size-guide-content th,
.size-guide-content td {
    padding: 0.8rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.size-guide-content th {
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-guide-content td {
    color: rgba(255, 255, 255, 0.7);
}

.size-guide-content tr:hover td {
    background: rgba(231, 76, 60, 0.05);
}

/* PREMIUM GIFT BOX */
.premium-gift {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.12) 0%, rgba(255, 107, 107, 0.08) 100%);
    border: 1px solid rgba(231, 76, 60, 0.35);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    animation: giftPulse 3s ease-in-out infinite;
}

.premium-gift::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.08), transparent);
    animation: giftShine 4s ease-in-out infinite;
}

@keyframes giftShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes giftPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.15); }
    50% { box-shadow: 0 0 20px 0 rgba(231, 76, 60, 0.1); }
}

.premium-gift-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.premium-gift-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.premium-gift-text strong {
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.premium-gift-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.4;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 100px 4% 60px;
    }

    .product-title {
        font-size: 2rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .gallery-main {
        aspect-ratio: auto;
        min-height: 350px;
    }

    .gallery-thumbs {
        justify-content: center;
    }

    .thumb {
        width: 65px;
        height: 65px;
    }

    .size-btn {
        width: 50px;
        height: 50px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.8rem;
    }

    .product-title {
        font-size: 1.7rem;
    }
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: #111;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}
.cart-sidebar.open {
    transform: translateX(0);
}

/* Header */
.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}
.cart-sidebar-header h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}
.cart-sidebar-count {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.cart-sidebar-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}
.cart-sidebar-close:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Body - items */
.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}
.cart-sidebar-body::-webkit-scrollbar { width: 4px; }
.cart-sidebar-body::-webkit-scrollbar-track { background: transparent; }
.cart-sidebar-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* Cart Item */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: all 0.3s ease;
}
.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.3rem;
}
.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}
.cart-item-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-size {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}
.cart-item-bonus {
    color: #e74c3c;
    font-size: 0.75rem;
    font-weight: 600;
}
.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.4rem;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
}
.cart-qty-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cart-qty-btn:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}
.cart-item-qty span {
    width: 30px;
    text-align: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}
.cart-item-price {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}
.cart-item-remove {
    position: absolute;
    top: 1rem;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0.2rem;
    transition: color 0.2s;
}
.cart-item-remove:hover {
    color: #e74c3c;
}

/* Empty state */
.cart-sidebar-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem;
}
.empty-cart-icon {
    font-size: 3.5rem;
    opacity: 0.3;
}
.cart-sidebar-empty p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 1.1rem;
}
.cart-sidebar-empty span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    text-align: center;
}

/* Footer */
.cart-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cart-bonus-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-total-row span:first-child {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cart-total-price {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
}
.cart-shipping-note {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    text-align: center;
}
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}
.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.45);
}

/* Floating cart button */
.cart-floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    z-index: 9990;
    transition: all 0.3s ease;
    animation: cartBounce 0.5s ease;
}
.cart-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}
@keyframes cartBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.cart-floating-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #fff;
    color: #e74c3c;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Responsive sidebar */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 100vw;
        max-width: 100vw;
    }
    .cart-floating-btn {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 54px;
        height: 54px;
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
}
.faq-question:hover {
    color: #e74c3c;
}
.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: rgba(255,255,255,0.4);
}
.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    stroke: #e74c3c;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 0 1.3rem 0;
}
.faq-answer p {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    line-height: 1.7;
}
@media (max-width: 600px) {
    .faq-title {
        font-size: 1.5rem;
    }
    .faq-question {
        font-size: 0.92rem;
    }
}


/* ========== COFFRET SECTION ========== */
.coffret-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.coffret-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.coffret-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.coffret-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.coffret-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    aspect-ratio: 1/1;
}
.coffret-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.coffret-image:hover img {
    transform: scale(1.05);
}
@media (max-width: 600px) {
    .coffret-gallery {
        grid-template-columns: 1fr;
    }
    .coffret-title {
        font-size: 1.5rem;
    }
}