/* ═══════════════════════════════════════════════════════════
   CATEGORY LISTING — GLASSMORPHISM + GOLD FILTER NAV
   Quiet Luxury Aesthetic · Material Design 3 Dark Mode
   Extracted from inline styles for pipeline usage
   ═══════════════════════════════════════════════════════════ */

/* ── CHIP BAR ── */
.nv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
    padding: 18px 24px;
    position: sticky;
    top: 68px;
    z-index: 200;

    /* Smoky glass surface */
    background: linear-gradient(180deg,
            rgba(22, 20, 18, 0.97) 0%,
            rgba(26, 24, 22, 0.93) 100%);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);

    /* Subtle warm gold underline */
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.15);

    justify-content: center;
    pointer-events: auto;
}

/* ── BASE CHIP ── */
.nv-chip {
    padding: 10px 22px;
    pointer-events: auto;

    /* Glass micro-surface */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;

    /* Typography */
    color: rgba(200, 195, 188, 0.55);
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;

    /* Smooth premium transition */
    transition:
        color 0.35s ease,
        background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.3s ease;
}

/* Inner shimmer layer */
.nv-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.06) 0%,
            transparent 40%,
            rgba(212, 175, 55, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* ── HOVER STATE ── */
.nv-chip:hover {
    color: rgba(235, 228, 218, 0.85);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.05);
}

.nv-chip:hover::before {
    opacity: 1;
}

/* ── ACTIVE / SELECTED STATE ── */
.nv-chip.is-active {
    /* Gold glass gradient */
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.14) 0%,
            rgba(178, 144, 38, 0.07) 50%,
            rgba(212, 175, 55, 0.10) 100%);
    border-color: rgba(212, 175, 55, 0.45);
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 2px;

    /* Premium glow */
    box-shadow:
        0 0 24px rgba(212, 175, 55, 0.06),
        0 0 8px rgba(212, 175, 55, 0.04),
        inset 0 1px 0 rgba(255, 235, 180, 0.1),
        inset 0 -1px 0 rgba(212, 175, 55, 0.05);
}

.nv-chip.is-active::before {
    opacity: 1;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.08) 0%,
            transparent 50%,
            rgba(212, 175, 55, 0.04) 100%);
}

/* Active press feedback */
.nv-chip:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

/* ═══════════════════════════════════════════════════════════
   FEATURED SERVICE HIGHLIGHT
   ═══════════════════════════════════════════════════════════ */

.nv-featured-highlight {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.nv-featured-kicker {
    display: block;
    text-align: center;
    margin-bottom: 1.2rem;
    color: #D4AF37;
    font-size: 10px;
    letter-spacing: 3px;
}

.nv-featured-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;

    /* Gold glass surface */
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.06) 0%,
            rgba(26, 24, 22, 0.95) 40%,
            rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;

    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.2);

    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.nv-featured-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.06),
        0 12px 48px rgba(0, 0, 0, 0.25);
}

.nv-featured-body {
    flex: 1;
}

.nv-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main, #f5f0eb);
    margin: 0 0 0.6rem;
    letter-spacing: 1px;
}

.nv-featured-desc {
    color: rgba(200, 195, 188, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 0.8rem;
    max-width: 500px;
}

.nv-featured-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(212, 175, 55, 0.6);
    letter-spacing: 1px;
}

.nv-featured-cta {
    flex-shrink: 0;
    padding: 14px 32px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .nv-featured-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .nv-featured-desc {
        max-width: 100%;
    }

    .nv-featured-cta {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════
   CATEGORY SECTIONS — EDITORIAL LAYOUT
   ═══════════════════════════════════════════════════════════ */

.nv-massage-category {
    margin-bottom: 4rem;
    padding-top: 1.5rem;
    scroll-margin-top: 140px;
    animation: catFadeIn 0.6s ease both;
}

@keyframes catFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nv-cat-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.10);
    position: relative;
}

/* Gold accent line */
.nv-cat-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.7), transparent);
    border-radius: 1px;
}

.nv-cat-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: grayscale(20%) brightness(0.95);
    opacity: 0.85;
}

.nv-cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-main, #f5f0eb);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nv-cat-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(212, 175, 55, 0.5);
    margin: 5px 0 0;
    font-style: italic;
    letter-spacing: 0.8px;
    font-weight: 300;
}

.nv-cat-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Hero adjustment */
.nv-hero-card {
    min-height: 50vh;
}

/* ═══════════════════════════════════════════════════════════
   ALL SERVICES LINK LIST
   ═══════════════════════════════════════════════════════════ */

.category-all-services {
    padding: 2rem 0;
}

.category-all-services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-main, #f5f0eb);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.service-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}

.service-link-list li {
    margin-bottom: 0.6rem;
    break-inside: avoid;
}

.service-link-list a {
    color: rgba(200, 195, 188, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-link-list a:hover {
    color: #D4AF37;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */

.page-faq {
    padding: 3rem 0;
    max-width: 700px;
    margin: 0 auto;
}

.page-faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-main, #f5f0eb);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.15);
}

.faq-item summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-main, #f5f0eb);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-item p {
    padding: 0 1.5rem 1rem;
    color: rgba(200, 195, 188, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SEO BOTTOM BLOCK
   ═══════════════════════════════════════════════════════════ */

.seo-bottom-block {
    padding: 2rem 0;
    text-align: center;
}

/* ═══ MOBILE RESPONSIVE ═══ */
@media (max-width: 768px) {
    .nv-chips {
        gap: 6px;
        top: 58px;
        padding: 12px 16px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .nv-chips::-webkit-scrollbar {
        display: none;
    }

    .nv-chip {
        font-size: 9.5px;
        padding: 9px 16px;
        letter-spacing: 2px;
        flex-shrink: 0;
    }

    .nv-cat-title {
        font-size: 1.15rem;
        letter-spacing: 1.5px;
    }

    .nv-cat-icon {
        font-size: 1.3rem;
    }

    .nv-cat-tagline {
        font-size: 0.72rem;
    }

    .nv-cat-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .nv-massage-category {
        margin-bottom: 3rem;
    }

    .service-link-list {
        columns: 1;
    }
}