/* ═══════════════════════════════════════════════════════
   SINGLE PRODUCT — ULTRA PREMIUM 2026 AESTHETIC
   Typography: Satoshi for headings, Cabinet Grotesk for body
   Aesthetic: obsidian glass, controlled warmth, refined motion
   ═══════════════════════════════════════════════════════ */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400;500;700;900&f[]=cabinet-grotesk@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* ─── WRAPPER ─── */
.custom-single-product-wrapper {
    position: relative;
    padding-top: 100px;
    min-height: 100vh;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    --font-product-heading: 'Satoshi', 'Cormorant Garamond', sans-serif;
    --font-product-body: 'Cabinet Grotesk', 'Outfit', sans-serif;
    --font-product-mono: 'Outfit', 'Courier New', sans-serif;
    --glass-card: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.10);
    --spec-bg: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .custom-single-product-wrapper {
    --glass-card: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-highlight: rgba(0, 0, 0, 0.05);
    --spec-bg: rgba(0, 0, 0, 0.04);
}

/* ─── AMBIENT GLOWS ─── */
.csp-bg-glow {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 60%;
    height: 80vh;
    background: radial-gradient(circle at center, rgba(184, 151, 106, 0.07) 0%, transparent 65%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
    filter: blur(90px);
    animation: glowDrift 12s ease-in-out infinite alternate;
}

.csp-bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 60vh;
    background: radial-gradient(circle at center, rgba(80, 100, 200, 0.06) 0%, transparent 65%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
    animation: glowDrift 16s ease-in-out infinite alternate-reverse;
}

[data-theme="dark"] .csp-bg-glow {
    background: radial-gradient(circle at center, rgba(184, 151, 106, 0.1) 0%, transparent 60%);
}

[data-theme="dark"] .csp-bg-glow-2 {
    background: radial-gradient(circle at center, rgba(130, 100, 250, 0.08) 0%, transparent 60%);
}

@keyframes glowDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 20px) scale(1.1);
    }
}

/* ─── CONTAINER / LAYOUT ─── */
.csp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .csp-container {
        flex-direction: row;
        align-items: flex-start;
        padding-top: 3rem;
        gap: 5rem;
    }
}

/* ═══════════════════════════════════════════════════════
   LEFT: IMAGE GALLERY
   ═══════════════════════════════════════════════════════ */
.csp-gallery-side {
    flex: 1.1;
    min-width: 0;
}

@media (min-width: 992px) {
    .csp-gallery-side {
        position: sticky;
        top: 110px;
    }
}

.csp-main-image-container {
    background: var(--glass-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 380px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .csp-main-image-container {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.csp-main-image-container:hover {
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .csp-main-image-container:hover {
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
    .csp-main-image-container {
        min-height: 560px;
        padding: 3rem;
    }
}

.csp-main-image {
    max-width: 100%;
    max-height: 460px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.35));
}

.csp-main-image-container:hover .csp-main-image {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

/* Floating sale badge */
.csp-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-product-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 24px var(--accent-glow);
    animation: badgePulse 2.5s ease-in-out infinite;
}

.csp-floating-badge i {
    width: 14px;
    height: 14px;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 8px 24px var(--accent-glow);
    }

    50% {
        box-shadow: 0 8px 32px var(--accent-glow);
    }
}

/* Image background glow */
.csp-image-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    filter: blur(60px);
    pointer-events: none;
}

/* Thumbnails */
.csp-thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.csp-thumbnails::-webkit-scrollbar {
    display: none;
}

.csp-thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: var(--glass-card);
    border: 1.5px solid var(--glass-border);
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.55;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.csp-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.csp-thumb:hover {
    opacity: 0.85;
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.csp-thumb.active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent), 0 4px 16px var(--accent-glow);
}

/* ═══════════════════════════════════════════════════════
   RIGHT: PRODUCT DETAILS
   ═══════════════════════════════════════════════════════ */
.csp-details-side {
    flex: 1;
    min-width: 0;
    max-width: 620px;
    padding-bottom: 3rem;
}

/* Breadcrumbs */
.csp-breadcrumbs {
    font-family: var(--font-product-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.csp-breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.csp-breadcrumbs a:hover {
    color: var(--accent);
}

.csp-breadcrumbs .current {
    color: var(--text-secondary);
}

/* Brand chip */
.csp-brand {
    font-family: var(--font-product-mono);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.csp-brand::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Title */
.csp-title {
    font-family: var(--font-product-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .csp-title {
    background: linear-gradient(135deg, #EDEBE8 0%, rgba(184, 151, 106, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tagline */
.csp-tagline {
    font-family: var(--font-product-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* Price */
.csp-price-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.csp-price {
    font-family: 'DM Sans', var(--font-product-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums lining-nums;
}

.csp-price del {
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-right: 0.25rem;
    font-weight: 400;
}

.csp-price ins {
    text-decoration: none;
    color: var(--accent);
}

.csp-badge-sale {
    background: rgba(212, 35, 26, 0.1);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-product-mono);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
}

.csp-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-product-mono);
    font-size: 0.72rem;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.csp-stock-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    display: inline-block;
}

/* Short Description */
.csp-short-desc {
    font-family: var(--font-product-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.csp-short-desc p {
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   KEY SPECS STRIP
   ═══════════════════════════════════════════════════════ */
.csp-spec-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--spec-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.csp-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 0.75rem;
    text-align: center;
    position: relative;
    transition: background 0.3s ease;
}

.csp-spec-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--glass-border);
}

.csp-spec-item:hover {
    background: var(--glass-highlight);
}

.csp-spec-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.csp-spec-icon i {
    width: 20px;
    height: 20px;
}

.csp-spec-value {
    font-family: 'DM Sans', var(--font-product-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: -0.01em;
}

.csp-spec-label {
    font-family: var(--font-product-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .csp-spec-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .csp-spec-item:nth-child(2)::after {
        display: none;
    }

    .csp-spec-item:nth-child(1),
    .csp-spec-item:nth-child(2) {
        border-bottom: 1px solid var(--glass-border);
    }
}

/* Divider */
.csp-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 0 0 2rem;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   ADD TO CART AREA
   ═══════════════════════════════════════════════════════ */
.csp-action-area {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.csp-action-area form.cart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.csp-action-area form.cart table.variations {
    flex: 0 0 100%;
}

.csp-action-area form.cart .single_variation_wrap {
    flex: 0 0 100%;
}

/* ── Action Row: [Qty] [Add to Cart] side by side ── */
.csp-action-row {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    width: 100%;
}

.csp-action-area .quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    height: 52px;
    flex-shrink: 0;
    width: auto;
}

.csp-action-area .quantity label {
    display: none;
}

/* Custom stepper buttons */
.csp-qty-btn {
    width: 38px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    -webkit-user-select: none;
    line-height: 1;
}

.csp-qty-btn:hover {
    color: var(--accent);
    background: var(--glass-highlight);
}

.csp-qty-btn:active {
    transform: scale(0.92);
}

.csp-action-area input.qty {
    width: 36px;
    height: 52px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-align: center;
    font-size: 1.05rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    border-radius: 0;
    transition: color 0.3s;
    -moz-appearance: textfield;
    appearance: textfield;
}

.csp-action-area input.qty::-webkit-inner-spin-button,
.csp-action-area input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.csp-action-area input.qty:focus {
    outline: none;
    color: var(--accent);
}

.csp-add-btn {
    flex: 1;
    min-width: 0;
    height: 52px;
    border-radius: 14px;
    font-family: var(--font-product-body) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    font-size: 0.95rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden !important;
    box-shadow: 0 6px 20px var(--accent-glow);
}

.csp-add-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;
    pointer-events: none;
}

.csp-add-btn:hover::before {
    left: 100%;
}

.csp-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

[data-theme="dark"] .csp-add-btn:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}

.csp-add-btn--done {
    background: #38a169 !important;
    border-color: #38a169 !important;
    color: #fff !important;
    pointer-events: none;
}

.csp-add-btn:disabled {
    opacity: 0.7;
    pointer-events: none;
}

/* ── Animated divider between Add to Cart and Buy Now ── */
.csp-action-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 0.35rem 0;
    overflow: hidden;
    background: var(--glass-border);
}

.csp-action-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: dividerShimmer 2.5s ease-in-out infinite;
}

@keyframes dividerShimmer {
    0%   { left: -40%; opacity: 0; }
    30%  { opacity: 1; }
    70%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ═══════ BUY NOW — Primary Conversion CTA ═══════ */
.csp-buy-now-btn {
    width: 100%;
    height: 54px;
    border-radius: 14px;
    font-family: var(--font-product-body);
    font-weight: 700;
    letter-spacing: 0.6px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #9a7340, #7a5a2e);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(122, 90, 46, 0.35);
    margin-top: 0.25rem;
}

.csp-buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.csp-buy-now-btn:hover::before {
    left: 100%;
}

.csp-buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px var(--accent-glow);
}

[data-theme="dark"] .csp-buy-now-btn:hover {
    box-shadow: 0 14px 36px var(--accent-glow);
}

.csp-buy-now-btn:active {
    transform: translateY(0) scale(0.98);
}

.csp-buy-now-btn svg {
    transition: transform 0.3s ease;
}

.csp-buy-now-btn:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
}

/* Loading state */
.csp-buy-now-btn.csp-loading {
    pointer-events: none;
    opacity: 0.85;
}

.csp-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-right-color: currentColor;
    border-radius: 50%;
    animation: cspSpin 0.6s linear infinite;
}

@keyframes cspSpin {
    to { transform: rotate(360deg); }
}

/* ── Responsive: stack on very small screens ── */
@media (max-width: 380px) {
    .csp-action-row {
        flex-direction: column;
    }

    .csp-action-area .quantity {
        width: 100%;
        justify-content: center;
    }

    .csp-add-btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════
   VARIATION SWATCHES — Obsidian Luxury Selectors
   Bold, tactile, unforgettable. Per SKILL.md.
   ═══════════════════════════════════════════════════════ */

/* Break the table into a clean vertical flow */
.csp-action-area table.variations {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
    display: block;
}
.csp-action-area table.variations tbody {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.csp-action-area table.variations tr {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

/* ── Label row: attribute name + selected value ── */
.csp-action-area table.variations th.label,
.csp-action-area table.variations td.label {
    padding: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.csp-action-area table.variations th.label label,
.csp-action-area table.variations td.label label {
    font-family: var(--font-product-mono);
    color: var(--text-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.nps-selected-label {
    font-family: var(--font-product-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0;
    text-transform: none;
    transition: color 0.3s;
}

/* ── Value cell ── */
.csp-action-area table.variations td.value {
    padding: 0;
    position: relative;
}

/* ── Swatch wrapper ── */
.nps-swatch-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.nps-swatch-wrap.nps-color-type {
    gap: 12px;
}

/* ═══════ PILL SWATCHES (Model, Storage, Size) ═══════ */
.nps-swatch-pill {
    position: relative;
    padding: 0.65rem 1.3rem;
    border-radius: 60px;
    background: var(--glass-card);
    border: 1.5px solid var(--glass-border);
    color: var(--text-primary);
    font-family: var(--font-product-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.nps-swatch-pill:hover {
    border-color: var(--text-muted);
    background: var(--glass-highlight);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
[data-theme="dark"] .nps-swatch-pill:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.nps-swatch-pill.nps-active {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent-soft), rgba(184,151,106,0.18));
    color: var(--accent);
    font-weight: 600;
    box-shadow:
        0 0 0 1.5px var(--accent),
        0 6px 24px var(--accent-glow);
    transform: translateY(-2px);
}
[data-theme="light"] .nps-swatch-pill.nps-active {
    background: linear-gradient(135deg, rgba(139,110,78,0.08), rgba(139,110,78,0.15));
    box-shadow:
        0 0 0 1.5px var(--accent),
        0 6px 20px rgba(139,110,78,0.15);
}
.nps-swatch-pill.nps-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
    position: relative;
    color: var(--text-muted);
    border-color: transparent;
    background: var(--glass-card);
    transform: none;
    box-shadow: none;
}
.nps-swatch-pill.nps-disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1.5px;
    background: var(--text-muted);
    border-radius: 2px;
    transform: rotate(-12deg);
    opacity: 0.7;
}
[data-theme="light"] .nps-swatch-pill.nps-disabled {
    opacity: 0.4;
    background: rgba(0,0,0,0.03);
}

/* ═══════ COLOR SWATCHES ═══════ */
.nps-swatch-color {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 2.5px solid transparent;
    padding: 3px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.nps-color-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}
/* Light-colored swatches need a visible ring */
.nps-color-circle.nps-light-swatch {
    box-shadow:
        inset 0 0 0 1.5px rgba(0,0,0,0.1),
        0 3px 10px rgba(0,0,0,0.08);
}
[data-theme="light"] .nps-color-circle {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
[data-theme="light"] .nps-color-circle.nps-light-swatch {
    box-shadow:
        inset 0 0 0 1.5px rgba(0,0,0,0.12),
        0 2px 8px rgba(0,0,0,0.06);
}

/* Hover */
.nps-swatch-color:hover {
    transform: scale(1.18);
}
.nps-swatch-color:hover .nps-color-circle {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Active — golden ring + checkmark */
.nps-swatch-color.nps-active {
    border-color: var(--accent);
    transform: scale(1.12);
}
.nps-swatch-color.nps-active .nps-color-circle {
    box-shadow:
        0 0 0 2px var(--accent),
        0 6px 24px rgba(0,0,0,0.25);
}
[data-theme="light"] .nps-swatch-color.nps-active .nps-color-circle {
    box-shadow:
        0 0 0 2px var(--accent),
        0 4px 16px rgba(139,110,78,0.2);
}

/* Checkmark overlay */
.nps-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
    box-shadow: 0 2px 8px var(--accent-glow);
    pointer-events: none;
}
.nps-swatch-color.nps-active .nps-check {
    transform: translate(-50%, -50%) scale(1);
}

/* Disabled */
.nps-swatch-color.nps-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(80%);
    transform: scale(0.88);
}
.nps-swatch-color.nps-disabled .nps-color-circle {
    box-shadow: none;
}
.nps-swatch-color.nps-disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 1.5px;
    background: rgba(0,0,0,0.45);
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 5;
}
[data-theme="light"] .nps-swatch-color.nps-disabled::after {
    background: rgba(0,0,0,0.3);
}
[data-theme="light"] .nps-swatch-color.nps-disabled {
    opacity: 0.35;
    filter: grayscale(70%);
}

/* ── Floating Tooltip ── */
.nps-tip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--bg-card, #1C1A18);
    color: var(--text-primary);
    font-family: var(--font-product-body);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 10px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    letter-spacing: 0.3px;
}
[data-theme="light"] .nps-tip {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.06);
}
.nps-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--bg-card, #1C1A18);
}
[data-theme="light"] .nps-tip::after {
    border-top-color: #fff;
}
.nps-swatch-color:hover .nps-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Clear / Reset link ── */
.nps-clear-link,
.csp-action-area .reset_variations {
    display: inline-block;
    margin-top: 0.6rem;
    font-family: var(--font-product-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}
.nps-clear-link:hover,
.csp-action-area .reset_variations:hover {
    color: var(--accent);
}

/* ── Entrance animation ── */
@keyframes swatchReveal {
    from { opacity: 0; transform: scale(0.8) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.nps-swatch {
    animation: swatchReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .nps-swatch-pill {
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }
    .nps-swatch-color {
        width: 40px;
        height: 40px;
    }
    .nps-swatch-wrap { gap: 8px; }
    .nps-swatch-wrap.nps-color-type { gap: 10px; }
}

/* ── Stock display ── */
.csp-action-area .woocommerce-variation-availability {
    font-family: var(--font-product-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.75rem;
}
.csp-action-area .woocommerce-variation-availability .stock {
    color: #22c55e;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.csp-action-area .woocommerce-variation-availability .stock::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
.csp-action-area .woocommerce-variation-availability .stock.out-of-stock {
    color: #ef4444;
}
.csp-action-area .woocommerce-variation-availability .stock.out-of-stock::before {
    background: #ef4444;
    animation: none;
}

/* ── Variation price update ── */
.csp-action-area .woocommerce-variation-price {
    margin-bottom: 0.75rem;
}
.csp-action-area .woocommerce-variation-price .price {
    font-family: 'DM Sans', var(--font-product-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}
.csp-action-area .woocommerce-variation-price .price del {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}
.csp-action-area .woocommerce-variation-price .price ins {
    text-decoration: none;
    color: var(--accent);
}

/* ── Single variation wrap layout fix ── */
.csp-action-area .single_variation_wrap {
    width: 100%;
}
.csp-action-area .woocommerce-variation {
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════
   HIGHLIGHTS / FEATURES
   ═══════════════════════════════════════════════════════ */
.csp-highlights {
    margin-top: 2.5rem;
}

.csp-section-label {
    font-family: var(--font-product-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.csp-section-label i {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.csp-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 500px) {
    .csp-highlights-grid {
        grid-template-columns: 1fr;
    }
}

.csp-highlight-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.csp-highlight-item:hover {
    background: var(--glass-highlight);
    border-color: var(--glass-highlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .csp-highlight-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.csp-highlight-item .icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-soft), rgba(139, 110, 78, 0.05));
    border: 1px solid rgba(139, 110, 78, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.csp-highlight-item:hover .icon-box {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.csp-highlight-item .icon-box i {
    width: 20px;
    height: 20px;
}

.csp-highlight-item h4 {
    font-family: var(--font-product-heading);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    line-height: 1.3;
}

.csp-highlight-item p {
    font-family: var(--font-product-body);
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   WHAT'S IN THE BOX
   ═══════════════════════════════════════════════════════ */
.csp-inbox {
    margin-top: 2.5rem;
}

.csp-inbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 500px) {
    .csp-inbox-grid {
        grid-template-columns: 1fr;
    }
}

.csp-inbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.csp-inbox-item:hover {
    background: var(--glass-highlight);
    transform: translateX(4px);
}

.csp-inbox-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--spec-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-secondary);
}

.csp-inbox-icon i {
    width: 16px;
    height: 16px;
}

.csp-inbox-item span {
    font-family: var(--font-product-body);
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   POLICIES / TRUST BADGES
   ═══════════════════════════════════════════════════════ */
.csp-policies {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 500px) {
    .csp-policies {
        grid-template-columns: 1fr;
    }
}

.csp-policies .policy {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-product-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.6rem 0;
    transition: color 0.3s ease;
}

.csp-policies .policy:hover {
    color: var(--text-primary);
}

.csp-policies .policy i {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   BOTTOM SECTION: TABS & RELATED
   ═══════════════════════════════════════════════════════ */
.csp-bottom-section {
    position: relative;
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.csp-bottom-section .csp-container {
    flex-direction: column;
}

.csp-tabs-container .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    overflow-x: auto;
    scrollbar-width: none;
}

.csp-tabs-container .woocommerce-tabs ul.tabs::-webkit-scrollbar {
    display: none;
}

.csp-tabs-container .woocommerce-tabs ul.tabs li {
    margin: 0;
}

.csp-tabs-container .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 0.85rem 0;
    font-family: var(--font-product-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s;
}

.csp-tabs-container .woocommerce-tabs ul.tabs li.active a,
.csp-tabs-container .woocommerce-tabs ul.tabs li a:hover {
    color: var(--text-primary);
}

.csp-tabs-container .woocommerce-tabs ul.tabs li.active a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.csp-tabs-container .woocommerce-Tabs-panel {
    font-family: var(--font-product-body);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.csp-tabs-container .woocommerce-Tabs-panel h2 {
    font-family: var(--font-product-heading);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.csp-related-section {
    margin-top: 5rem;
    position: relative;
}

/* ── Header: eyebrow + title + browse link ── */
.csp-related-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.csp-related-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.csp-related-eyebrow {
    font-family: var(--font-product-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.csp-related-eyebrow i {
    width: 14px;
    height: 14px;
}

.csp-related-title {
    font-family: var(--font-product-heading);
    color: var(--text-primary);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

[data-theme="dark"] .csp-related-title {
    background: linear-gradient(135deg, #EDEBE8 0%, rgba(184, 151, 106, 0.65) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.csp-related-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-product-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.65rem 1.4rem;
    border: 1.5px solid var(--glass-border);
    border-radius: 60px;
    background: var(--glass-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.csp-related-browse-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.csp-related-browse-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent-soft), rgba(184,151,106,0.08));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.csp-related-browse-btn:hover i {
    transform: translateX(4px);
}

/* ── Product Grid: 4 columns on desktop ── */
.csp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1100px) {
    .csp-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 520px) {
    .csp-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
}

/* ── Card ── */
.csp-related-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    animation: relatedCardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes relatedCardReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.csp-related-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-highlight);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .csp-related-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ── Card Image Container ── */
.csp-related-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--spec-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.csp-related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.csp-related-card:hover .csp-related-card-img img {
    transform: scale(1.08);
}

/* Sale tag */
.csp-related-sale-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: var(--accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-family: var(--font-product-mono);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 14px var(--accent-glow);
}

/* Hover overlay with quick-view icon */
.csp-related-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.csp-related-card:hover .csp-related-card-overlay {
    opacity: 1;
}

.csp-related-quick-view {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1C1A18;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(10px) scale(0.85);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.csp-related-card:hover .csp-related-quick-view {
    transform: translateY(0) scale(1);
}

.csp-related-quick-view:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* ── Card Body ── */
.csp-related-card-body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.csp-related-card-cat {
    font-family: var(--font-product-mono);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    opacity: 0.85;
}

.csp-related-card-name {
    font-family: var(--font-product-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.csp-related-card:hover .csp-related-card-name {
    color: var(--accent);
}

.csp-related-card-price {
    font-family: 'DM Sans', var(--font-product-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.25rem;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: -0.01em;
}

.csp-related-card-price del {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 400;
    margin-right: 0.3rem;
}

.csp-related-card-price ins {
    text-decoration: none;
    color: var(--accent);
}

/* ── Responsive tweaks ── */
@media (max-width: 520px) {
    .csp-related-card {
        border-radius: 16px;
    }

    .csp-related-card-body {
        padding: 0.85rem 0.9rem 1rem;
    }

    .csp-related-card-name {
        font-size: 0.88rem;
    }

    .csp-related-card-price {
        font-size: 0.92rem;
    }

    .csp-related-header {
        margin-bottom: 2rem;
    }

    .csp-related-title {
        font-size: 1.6rem;
    }

    .csp-related-browse-btn {
        font-size: 0.78rem;
        padding: 0.5rem 1rem;
    }

    .csp-related-sale-tag {
        font-size: 0.56rem;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }

    .csp-related-quick-view {
        width: 34px;
        height: 34px;
    }
}

/* ═══════════════════════════════════════════════════════
   REVIEWS FIXES
   ═══════════════════════════════════════════════════════ */
#reviews #comments h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

#reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

#reviews .commentlist li {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

#reviews .commentlist img.avatar {
    border-radius: 50%;
    margin-right: 1rem;
    float: left;
}

#reviews .comment-text {
    margin-left: 60px;
}

#reviews .meta {
    font-family: var(--font-product-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

#reviews #reply-title {
    font-family: var(--font-product-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#reviews .comment-form-rating {
    margin-bottom: 1.25rem;
}

#reviews .comment-form-rating label {
    display: block;
    margin-bottom: 0.4rem;
}

#reviews .stars a {
    color: var(--accent);
    text-decoration: none;
    margin-right: 0.4rem;
}

#reviews input[type="text"],
#reviews input[type="email"],
#reviews textarea {
    width: 100%;
    padding: 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-product-body);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

#reviews input[type="text"]:focus,
#reviews input[type="email"]:focus,
#reviews textarea:focus {
    outline: none;
    border-color: var(--accent);
}

#reviews input[type="submit"] {
    background: var(--inverse-bg);
    color: var(--inverse-text);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-family: var(--font-product-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

#reviews input[type="submit"]:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px var(--accent-glow);
}