/* ============================================================
   product.css — Azaad Product Detail Page
   Rewritten to match clean two-column e-commerce layout.
   Screenshot reference: bannuci.com product page.
   ============================================================ */

:root {
    --font-display: var(--font-serif, 'Tenor Sans', serif);
    --font-body: var(--font-sans, 'Inter', sans-serif);
    --product-gap: 56px;
}

/* ─────────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────────── */
.breadcrumb-nav {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border, #E8E8E8);
    background: var(--color-bg-primary, #fff);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-muted, #8A8A8A);
    letter-spacing: 0.03em;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb__link {
    color: var(--color-text-muted, #8A8A8A);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb__link:hover {
    color: var(--color-text-primary, #0A0A0A);
}

.breadcrumb__sep {
    opacity: 0.35;
    flex-shrink: 0;
}

.breadcrumb__item--current span {
    color: var(--color-text-primary, #0A0A0A);
    font-weight: 500;
}

/* ─────────────────────────────────────────────
   PRODUCT SECTION
───────────────────────────────────────────── */
.product-section {
    padding: 54px 0 64px;
}

/* ─────────────────────────────────────────────
   LAYOUT GRID  — 55 / 45 split
───────────────────────────────────────────── */
.product-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: var(--product-gap);
    align-items: start;
}

@media (max-width: 960px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ─────────────────────────────────────────────
   SKELETON LOADING
───────────────────────────────────────────── */
.product-skeleton-layout {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: var(--product-gap);
}

@media (max-width: 960px) {
    .product-skeleton-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.product-gallery-skeleton {
    display: flex;
    gap: 10px;
}

.skeleton-thumbs-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.skeleton-thumb {
    width: 68px;
    height: 84px;
    border-radius: 4px;
    background: var(--color-border, #E8E8E8);
}

.skeleton-main-img {
    flex: 1;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    background: var(--color-border, #E8E8E8);
}

.product-info-skeleton {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
}

/* shimmer */
.skeleton-pulse {
    background: linear-gradient(90deg,
            var(--color-border, #E8E8E8) 25%,
            #f5f5f5 50%,
            var(--color-border, #E8E8E8) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ─────────────────────────────────────────────
   PRODUCT GALLERY
───────────────────────────────────────────── */
.product-gallery {
    display: flex;
    flex-direction: row;
    gap: 10px;
    position: sticky;
    top: calc(var(--header-height-lg, 80px) + 16px);
}

@media (max-width: 960px) {
    .product-gallery {
        position: static;
        flex-direction: column-reverse;
    }
}

/* ── Thumbnail strip ── */
.product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 72px;
    flex-shrink: 0;
    max-height: 580px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.product-gallery__thumbs::-webkit-scrollbar {
    width: 3px;
}

.product-gallery__thumbs::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 2px;
}

@media (max-width: 960px) {
    .product-gallery__thumbs {
        flex-direction: row;
        width: 100%;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
    }
}

.gallery-thumb {
    width: 72px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--color-border, #E8E8E8);
    transition: border-color 0.2s;
    background: #f9f9f9;
    padding: 0;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.gallery-thumb:hover {
    border-color: var(--color-gray-500, #8A8A8A);
}

.gallery-thumb--active {
    border-color: var(--color-brand-black, #0A0A0A);
}

/* ── Main image ── */
.product-gallery__main {
    flex: 1;
    position: relative;
}

.product-gallery__main-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
    cursor: zoom-in;
    aspect-ratio: 4 / 5;
    user-select: none;
}

.product-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.product-gallery__main-img.is-loading {
    opacity: 0.4;
}

/* zoom lens */
.product-gallery__zoom-lens {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    display: none;
    z-index: 2;
}

/* zoom result (right side on desktop) */
.product-gallery__zoom-result {
    position: absolute;
    left: calc(100% + 12px);
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    display: none;
    z-index: 50;
    border: 1px solid var(--color-border);
    background: #f5f5f5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* badges over image */
.product-gallery__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
    pointer-events: none;
}

/* expand / lightbox */
.product-gallery__expand-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.88);
    border: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-brand-black);
    transition: background 0.15s;
    z-index: 4;
    backdrop-filter: blur(4px);
}

.product-gallery__expand-btn:hover {
    background: #fff;
}

/* mobile dots */
.product-gallery__mobile-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

@media (max-width: 960px) {
    .product-gallery__mobile-dots {
        display: flex;
    }
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.gallery-dot--active {
    background: var(--color-brand-black);
    transform: scale(1.35);
}

/* ─────────────────────────────────────────────
   PRODUCT INFO  (right column)
───────────────────────────────────────────── */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Each child uses margin-bottom for spacing — easier to tune */
}

/* ── category + badges row ── */
.product-info__top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.product-info__category {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted, #8A8A8A);
    text-decoration: none;
    transition: color 0.2s;
}

.product-info__category:hover {
    color: var(--color-brand-gold, #C9A96E);
}

.product-info__badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Small info badges */
.info-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-badge--new {
    background: var(--color-brand-black);
    color: #fff;
}

.info-badge--featured {
    background: var(--color-brand-gold);
    color: var(--color-brand-black);
}

.info-badge--out {
    background: var(--color-gray-300);
    color: var(--color-gray-700);
}

/* ── Title ── */
.product-info__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-primary, #0A0A0A);
    line-height: 1.25;
    margin: 0 0 14px;
}

/* ── Rating row ── */
.product-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--color-star, #F59E0B);
}

.product-info__rating-link {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    display: flex;
    gap: 4px;
}

.product-info__rating-link:hover {
    color: var(--color-text-primary);
    text-decoration: underline;
}

/* ── Price ── */
.product-info__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.product-info__price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--color-text-primary);
}

.product-info__compare {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-info__discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: var(--color-error, #DC2626);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.04em;
}


.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* JS adds --in / --low / --out */
.stock-indicator--in .stock-label {
    color: var(--color-text-primary, #0A0A0A);
}

.stock-indicator--low .stock-label {
    color: var(--color-warning, #D97706);
}

.stock-indicator--out .stock-label {
    color: var(--color-text-muted, #8A8A8A);
}

.dot--in {
    background: var(--color-success, #16A34A);
}

.dot--low {
    background: var(--color-warning, #D97706);
}

.dot--out {
    background: var(--color-gray-400, #B0B0B0);
}

.stock-indicator--loading .stock-dot {
    background: var(--color-border);
}

/* ── Divider ── */
.product-info__divider {
    height: 1px;
    background: var(--color-border, #E8E8E8);
    margin: 8px 0 20px;
}

/* ─────────────────────────────────────────────
   VARIANTS
───────────────────────────────────────────── */
.product-info__variants {
    margin-bottom: 20px;
}

.variant-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.variant-group+.variant-group {
    margin-top: 14px;
}

.variant-group__header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.variant-group__selected {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-muted);
}

.variant-group__btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.variant-btn {
    min-width: 52px;
    height: 42px;
    padding: 0 16px;
    border: 1.5px solid var(--color-border, #E8E8E8);
    background: #fff;
    color: var(--color-text-primary);
    font-family: 'Outfit, sans-serif';
    font-weight: 400;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, color 0.18s;
    white-space: nowrap;
}

.variant-btn:hover {
    border-color: var(--color-brand-black);
}

.variant-btn--active {
    border-color: var(--color-brand-black);
    background: var(--color-brand-black);
    color: #fff;
}

.variant-btn--disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ─────────────────────────────────────────────
   PURCHASE ROW  (qty + add to cart)
───────────────────────────────────────────── */
.product-info__purchase-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 12px;
}

/* Qty */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.qty-btn {
    width: 38px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    transition: background 0.15s;
    font-size: 1.1rem;
}

.qty-btn:hover {
    background: var(--color-gray-100, #F5F5F5);
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-input {
    width: 46px;
    height: 52px;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    background: transparent;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Add to Cart */
.btn--add-to-cart {
    flex: 1;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-brand-black, #0A0A0A);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn--add-to-cart:hover {
    background: var(--color-gray-900, #1A1A1A);
}

.btn--add-to-cart:active {
    transform: scale(0.99);
}

.btn--add-to-cart:disabled {
    background: var(--color-gray-400);
    cursor: not-allowed;
    transform: none;
}

.atc-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.65s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ─────────────────────────────────────────────
   BUY IT NOW — black CTA, motion se attention khenchta hai
───────────────────────────────────────────── */
.btn--buy-now-black {
    position: relative;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 12px;
    background: var(--color-brand-black, #0A0A0A);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: background 0.2s;
    animation: buyNowVibrate 4s ease-in-out infinite;
}

.btn--buy-now-black:hover {
    background: var(--color-gray-900, #1A1A1A);
}

.btn--buy-now-black:active {
    transform: scale(0.98);
}

.btn--buy-now-black svg,
.btn--buy-now-black span:not(.buy-now-shine) {
    position: relative;
    z-index: 2;
}

/* Shine sweep — halki roshni jo button ke upar se guzarti hai */
.buy-now-shine {
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(115deg,
            transparent 0%,
            rgba(255, 255, 255, .28) 45%,
            rgba(255, 255, 255, .55) 50%,
            rgba(255, 255, 255, .28) 55%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: buyNowShine 3.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes buyNowShine {
    0% {
        left: -60%;
    }

    35% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

@keyframes buyNowVibrate {

    0%,
    88%,
    100% {
        transform: translateX(0) translateY(0);
        box-shadow: 0 0 0 0 rgba(10, 10, 10, 0);
    }

    89% {
        transform: translateX(-3px);
    }

    90.5% {
        transform: translateX(3px);
    }

    92% {
        transform: translateX(-2.5px);
    }

    93.5% {
        transform: translateX(2.5px);
    }

    95% {
        transform: translateX(-1.5px);
        box-shadow: 0 0 0 6px rgba(10, 10, 10, .12);
    }

    96.5% {
        transform: translateX(1.5px);
    }

    98% {
        transform: translateX(0);
        box-shadow: 0 0 0 0 rgba(10, 10, 10, 0);
    }
}

.btn--buy-now-black:disabled {
    opacity: .45;
    cursor: not-allowed;
    animation: none;
    background: var(--color-gray-400);
}

.btn--buy-now-black:disabled .buy-now-shine {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .btn--buy-now-black {
        animation: none;
    }

    .buy-now-shine {
        display: none;
    }
}

/* ─────────────────────────────────────────────
   SECONDARY ACTIONS  (buy now + whatsapp)
───────────────────────────────────────────── */
.product-info__secondary-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.btn--buy-now {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    color: var(--color-brand-black);
    border: 1.5px solid var(--color-brand-black);
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
    width: 100%;
}

.btn--buy-now:hover {
    background: var(--color-brand-black);
    color: #fff;
}

.btn--whatsapp {
    height: 46px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s, transform 0.1s;
    cursor: pointer;
    width: 100%;
}

.btn--whatsapp:hover {
    background: #1EB75B;
    color: #fff;
}

.btn--whatsapp:active {
    transform: scale(0.98);
}

/* ─────────────────────────────────────────────
   WISHLIST + SHARE
───────────────────────────────────────────── */
.product-info__wishlist-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.wishlist-toggle-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 4px 0;
    transition: color 0.2s;
}

.wishlist-toggle-btn:hover {
    color: var(--color-text-primary);
}

.wishlist-toggle-btn--active {
    color: #E53935;
}

.wishlist-toggle-btn--active svg {
    fill: #E53935;
    stroke: #E53935;
}

.share-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-row__label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.share-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
}

.share-btn:hover {
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
}

.share-btn--whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.product-share-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 0 20px;
}

.product-share-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-muted, #8A8A8A);
    text-decoration: none;
    transition: color 0.18s;
}

.product-share-link svg {
    flex-shrink: 0;
}

.product-share-link:hover {
    color: var(--color-text-primary, #0A0A0A);
}

.product-share-link--facebook:hover {
    color: #1877F2;
}

.product-share-link--whatsapp:hover {
    color: #25D366;
}

.product-share-link--x:hover {
    color: #000;
}

.product-share-link--instagram:hover {
    color: #E1306C;
}

/* ─────────────────────────────────────────────
   TRUST BADGES (below wishlist/share)
───────────────────────────────────────────── */
.product-info__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 22px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--color-text-secondary, #4A4A4A);
    line-height: 1.4;
}

.trust-item svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--color-text-primary);
    opacity: 0.7;
}

/* ─────────────────────────────────────────────
   PRODUCT META (SKU / tags)
───────────────────────────────────────────── */
.product-info__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 0 16px;
}

.meta-row {
    display: flex;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    align-items: flex-start;
}

.meta-label {
    color: var(--color-text-muted);
    font-weight: 600;
    min-width: 56px;
    flex-shrink: 0;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    text-decoration: none;
    margin-right: 4px;
    margin-bottom: 4px;
    transition: border-color 0.18s, color 0.18s;
}

.meta-tag:hover {
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
}

/* ─────────────────────────────────────────────
   PRODUCT DESCRIPTION  (inline, no tabs)
───────────────────────────────────────────── */
.product-description {
    padding: 20px 0 0;
    border-top: 1px solid var(--color-border);
    margin-bottom: 24px;
}

.product-description h3,
.product-description h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin: 0 0 12px;
}

.product-description p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--color-text-secondary, #4A4A4A);
    margin-bottom: 12px;
}

.product-description ul,
.product-description ol {
    padding-left: 16px;
    margin-bottom: 12px;
}

.product-description li {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 5px;
}

.product-description strong {
    font-weight: 700;
}

.product-description a,
.rte a {
    color: var(--color-brand-gold, #C9A96E);
    text-decoration: underline;
}

/* RTE class (used in product.js) */
.rte h2,
.rte h3,
.rte h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin: 16px 0 10px;
}

.rte p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--color-text-secondary, #4A4A4A);
    margin-bottom: 10px;
}

.rte ul,
.rte ol {
    padding-left: 16px;
    margin-bottom: 10px;
}

.rte li {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.rte strong {
    font-weight: 700;
}

/* ─────────────────────────────────────────────
   SHIPPING INFO GRID  (inline in product page)
───────────────────────────────────────────── */
.shipping-info {
    margin-bottom: 24px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.shipping-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .shipping-info__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.shipping-info__card {
    padding: 18px 16px;
    background: var(--color-bg-secondary, #FAF8F5);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.shipping-info__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-border);
    border-radius: 4px;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.shipping-info__card h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.shipping-info__card ul {
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shipping-info__card li {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
}

/* ─────────────────────────────────────────────
   ACCORDION (Shipping Info / Ask a Question)
───────────────────────────────────────────── */
/* ── Accordion — Bannuci style ── */
.product-accordion {
    border: 1px solid var(--color-border, #E8E8E8);
    border-radius: 2px;
    margin-top: 24px;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border, #E8E8E8);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 18px 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-primary, #0A0A0A);
    text-align: center;
    transition: color 0.18s;
}

.accordion-trigger:hover {
    color: var(--color-text-primary, #0A0A0A);
}

.accordion-chevron {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
    color: var(--color-text-primary, #0A0A0A);
}

.accordion-trigger.is-open .accordion-chevron {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-panel {
    padding: 4px 20px 18px;
    text-align: center;
}

.accordion-panel p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-text-secondary, #4A4A4A);
}

/* ─────────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────────── */
#faqSection {
    background: var(--color-bg-primary);
}

.faq-list {
    border-top: 1px solid var(--color-border);
    margin-top: 28px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-primary);
    text-align: left;
    transition: color 0.18s;
    font-family: 'Outfit';
    letter-spacing: 0.025em;
}

.faq-trigger:hover {
    color: var(--color-brand-gold);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.22s;
}

.faq-trigger.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-panel {
    padding: 0 0 16px;
}

.faq-panel p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
}

/* ─────────────────────────────────────────────
   PRODUCT BADGES (on image + in info)
───────────────────────────────────────────── */
.product-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-badge--new {
    background: var(--color-brand-black);
    color: #fff;
}

.product-badge--sale {
    background: var(--color-error, #DC2626);
    color: #fff;
}

.product-badge--sold-out {
    background: var(--color-gray-500);
    color: #fff;
}

/* ─────────────────────────────────────────────
   REVIEWS SECTION
───────────────────────────────────────────── */
#reviewsSection {
    background: var(--color-bg-secondary, #FAF8F5);
    border-top: 1px solid var(--color-border);
}

.product-reviews {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Summary */
.reviews-summary {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.reviews-summary__score {
    text-align: center;
    min-width: 110px;
}

.reviews-summary__big-score {
    display: block;
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.reviews-summary__stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    color: var(--color-star, #F59E0B);
    margin-bottom: 6px;
}

.reviews-summary__total {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.reviews-summary__breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.breakdown-star {
    min-width: 32px;
    text-align: right;
    white-space: nowrap;
    font-size: 0.72rem;
}

.breakdown-bar {
    flex: 1;
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: var(--color-star, #F59E0B);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.breakdown-count {
    min-width: 20px;
    text-align: right;
    font-size: 0.72rem;
}

/* Review cards */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item {
    padding: 20px;
    background: var(--color-bg-primary, #fff);
    border-radius: 4px;
}

.review-item__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.review-item__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-brand-gold, #C9A96E);
    color: var(--color-brand-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-item__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.review-item__name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.review-item__date {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.review-item__stars {
    display: flex;
    gap: 2px;
    color: var(--color-star);
}

.review-item__verified {
    font-size: 0.72rem;
    color: var(--color-success, #16A34A);
    font-weight: 600;
    flex-shrink: 0;
}

.review-item__title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}

.review-item__body {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Load more */
.reviews-load-more {
    text-align: center;
    padding-top: 8px;
}

/* Review form */
.review-form-wrap {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
}

.review-form__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px;
}

.review-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 520px) {
    .review-form__row {
        grid-template-columns: 1fr;
    }
}

.review-form__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-form__label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.review-form__input,
.review-form__textarea {
    padding: 10px 12px;
    border: 1.5px solid var(--color-border);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-primary);
    background: #fff;
    transition: border-color 0.18s;
    resize: vertical;
}

.review-form__input:focus,
.review-form__textarea:focus {
    outline: none;
    border-color: var(--color-brand-black);
}

/* Star picker */
.review-form__rating-picker {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.star-picker {
    display: flex;
    gap: 3px;
}

.star-pick {
    font-size: 1.7rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-border);
    transition: color 0.15s, transform 0.1s;
    padding: 0 2px;
    line-height: 1;
}

.star-pick.is-active,
.star-pick.star-pick--hover {
    color: var(--color-star, #F59E0B);
}

.star-pick:hover {
    transform: scale(1.15);
}

.review-form__error {
    color: var(--color-error, #DC2626);
    font-size: 0.78rem;
    min-height: 16px;
}

.review-submit-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.65s linear infinite;
}

/* ─────────────────────────────────────────────
   RELATED PRODUCTS SECTION
───────────────────────────────────────────── */
#relatedSection {
    background: var(--color-bg-primary);
}

/* ─────────────────────────────────────────────
   RECENTLY VIEWED SECTION
───────────────────────────────────────────── */
#recentlyViewedSection {
    background: var(--color-bg-secondary);
}

/* ─────────────────────────────────────────────
   STICKY ATC BAR
───────────────────────────────────────────── */
.sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sidebar, 500);
    background: var(--color-bg-primary, #fff);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(100%);
    transition: transform 0.28s var(--ease-out);
}

.sticky-atc.is-visible {
    transform: translateY(0);
}

.sticky-atc__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

.sticky-atc__product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sticky-atc__img {
    width: 44px;
    height: 54px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.sticky-atc__meta {
    min-width: 0;
}

.sticky-atc__name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.sticky-atc__price {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.sticky-atc__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.qty-selector--sm .qty-btn {
    width: 30px;
    height: 40px;
}

.qty-selector--sm .qty-input {
    width: 38px;
    height: 40px;
    font-size: 0.82rem;
}

/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal, 1000);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    cursor: pointer;
}

.lightbox__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 56px 72px;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .lightbox__content {
        padding: 56px 16px 72px;
    }
}

.lightbox__img-wrap {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 84vh;
    object-fit: contain;
    display: block;
    border-radius: 3px;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    transition: background 0.18s;
    z-index: 2;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    transition: background 0.18s;
    z-index: 2;
}

.lightbox__arrow:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox__arrow--prev {
    left: 14px;
}

.lightbox__arrow--next {
    right: 14px;
}

.lightbox__dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.lightbox-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.18s, transform 0.18s;
}

.lightbox-dot--active {
    background: #fff;
    transform: scale(1.3);
}

.lightbox__counter {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.78rem;
}

/* ─────────────────────────────────────────────
   PRODUCT ERROR STATE
───────────────────────────────────────────── */
.product-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 960px)
───────────────────────────────────────────── */
@media (max-width: 960px) {
    .product-section {
        padding: 20px 0 40px;
    }

    .product-gallery {
        flex-direction: column-reverse;
    }

    .product-gallery__thumbs {
        flex-direction: row;
        width: 100%;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .product-gallery__main-wrap {
        border-radius: 3px;
        cursor: pointer;
    }

    .product-gallery__zoom-lens {
        display: none !important;
    }

    .product-gallery__zoom-result {
        display: none !important;
    }

    .product-info__trust {
        grid-template-columns: 1fr 1fr;
    }

    .product-info__purchase-row {
        flex-wrap: wrap;
    }

    .btn--add-to-cart {
        flex: 1;
        min-width: 180px;
    }

    .shipping-info__grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-summary__score {
        text-align: left;
    }

    .reviews-summary__stars {
        justify-content: flex-start;
    }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 640px)
───────────────────────────────────────────── */
@media (max-width: 640px) {
    .product-section {
        padding: 12px 0 32px;
    }

    .product-info__title {
        font-size: 1.2rem;
    }

    .product-info__price {
        font-size: 1.25rem;
    }

    .product-gallery__thumbs {
        display: none;
    }

    .product-gallery__mobile-dots {
        display: flex;
    }

    .product-info__purchase-row {
        flex-direction: column;
        gap: 10px;
    }

    .qty-selector {
        width: 100%;
        justify-content: center;
    }

    .btn--add-to-cart {
        width: 100%;
    }

    .product-info__trust {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .shipping-info__grid {
        grid-template-columns: 1fr;
    }

    .sticky-atc__product {
        display: none;
    }

    .sticky-atc__actions {
        width: 100%;
        justify-content: space-between;
    }

    .review-form {
        max-width: 100%;
    }

    .review-form__row {
        grid-template-columns: 1fr;
    }

    .product-info__wishlist-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ─────────────────────────────────────────────
   SMALL MOBILE (≤ 400px)
───────────────────────────────────────────── */
@media (max-width: 400px) {
    .product-info__title {
        font-size: 1.1rem;
    }

    .product-info__price {
        font-size: 1.15rem;
    }

    .variant-btn {
        min-width: 44px;
        height: 38px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .faq-trigger {
        font-size: 0.82rem;
    }
}

.product-info__free-shipping {
    display: flex;
    align-items: center;
    letter-spacing: 0.025em;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-primary, #0A0A0A);
    margin-bottom: 6px;
    line-height: 1.4;
    flex-wrap: nowrap;
}

.product-info__free-shipping svg {
    flex-shrink: 0;
    /* ← icon ko squeeze hone se rokta hai */
}