/* ============================================
   FORTBERG Landing — Design System
   Immersive dark UI, neon accents, glassmorphism
   3D effects, cinematic parallax
   ============================================ */

/* === CSS Variables === */
:root {
    --bg-deep: #06060b;
    --bg-surface: #0d0d16;
    --bg-elevated: #13131f;
    --bg-card: rgba(16, 16, 28, 0.55);

    --neon-cyan: #00f5d4;
    --neon-purple: #b537f2;
    --neon-blue: #3a86ff;
    --neon-pink: #ff006e;
    --neon-cyan-rgb: 0, 245, 212;
    --neon-purple-rgb: 181, 55, 242;
    --neon-blue-rgb: 58, 134, 255;

    --text-primary: #e8e8f0;
    --text-secondary: #7a7a8e;
    --text-muted: #4a4a5c;
    --text-accent: var(--neon-cyan);

    --glass-bg: rgba(16, 16, 28, 0.55);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: 24px;

    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* === Reset === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* === Canvas & Noise === */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(20px, 4vw, 48px);
    background: rgba(6, 6, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 12px clamp(20px, 4vw, 48px);
    background: rgba(6, 6, 11, 0.95);
}

.nav-brand {
    display: flex;
    align-items: center;
    color: inherit;
}

.fortberg-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.24rem 0.62rem;
    border: 1.4px solid rgba(255, 255, 255, 0.75);
    background: linear-gradient(180deg, rgba(240, 241, 245, 0.94), rgba(214, 217, 224, 0.94));
    color: #141821;
    border-radius: 2px;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.fortberg-wordmark--nav {
    font-size: 0.96rem;
    padding: 0.26rem 0.68rem;
}

.fortberg-wordmark--hero {
    font-size: clamp(1.45rem, 3.4vw, 2.55rem);
    padding: 0.28rem 0.82rem;
    border-width: 2px;
    letter-spacing: 0.045em;
}

.fortberg-wordmark--brand {
    font-size: 0.72rem;
    padding: 0.2rem 0.52rem;
    margin-left: 6px;
    vertical-align: middle;
    border-color: rgba(255, 255, 255, 0.68);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(var(--neon-cyan-rgb), 0.4);
}

.nav-back {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-back:hover {
    color: var(--neon-cyan);
    border-color: rgba(var(--neon-cyan-rgb), 0.3);
    box-shadow: 0 0 12px rgba(var(--neon-cyan-rgb), 0.15);
}

.nav-back svg {
    width: 18px;
    height: 18px;
}

/* === Hero Section === */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(100px, 15vh, 160px) clamp(20px, 5vw, 80px) clamp(60px, 10vh, 120px);
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(var(--neon-cyan-rgb), 0.08);
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neon-cyan);
    letter-spacing: 0.03em;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    animation: fadeInUp 0.8s var(--ease-out-expo) both;
    overflow: hidden;
}

.hero-line-1 {
    animation-delay: 0.3s;
    color: var(--text-primary);
}

.hero-line-2 {
    animation-delay: 0.45s;
}

.hero-accent {
    display: inline;
    padding: 0;
    border: none;
    background: linear-gradient(135deg, var(--neon-cyan), #a78bfa, var(--neon-cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    line-height: 1;
    filter: drop-shadow(0 0 30px rgba(var(--neon-cyan-rgb), 0.3));
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.75s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-deep);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 24px rgba(var(--neon-cyan-rgb), 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(var(--neon-cyan-rgb), 0.4);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateY(3px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-purple);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* Hero Orbs (decorative) */
.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-cyan);
    top: -10%;
    right: -5%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    bottom: -10%;
    left: -5%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-blue);
    top: 40%;
    left: 50%;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 30px) scale(1.1);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.15);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -30px) scale(0.9);
    }
}

/* === Catalog Section === */
.catalog {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 60px);
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(32px, 5vh, 56px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: var(--text-secondary);
}

/* === Products Container (секции категорий) === */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* === Category Section === */
.category-section {
    width: 100%;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.category-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(var(--neon-cyan-rgb), 0.3));
}

.category-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    white-space: nowrap;
}

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    border-radius: 100px;
    background: rgba(var(--neon-cyan-rgb), 0.1);
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
}

.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--neon-cyan-rgb), 0.2), transparent);
    min-width: 40px;
}

/* === Category Products Grid === */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* === Category SEO Text === */
.category-seo-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 800px;
    opacity: 0.8;
}

/* === Product Card === */
.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
}

.product-card:hover {
    border-color: rgba(var(--neon-cyan-rgb), 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(var(--neon-cyan-rgb), 0.08);
}

/* Glow line on top */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.product-card:hover::before {
    opacity: 0.5;
}

.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-surface);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
    color: var(--text-muted);
    font-size: 2rem;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--neon-cyan);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.product-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    margin-top: 6px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 52px;
    min-height: 52px;
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s ease;
    text-align: center;
}

.product-link:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.04);
}

.product-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
    height: 52px;
    min-height: 52px;
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: var(--radius-sm);
    background: rgba(var(--neon-cyan-rgb), 0.1);
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.product-btn:hover {
    border-color: rgba(178, 72, 255, 0.62);
    box-shadow: 0 0 18px rgba(178, 72, 255, 0.28), 0 0 14px rgba(var(--neon-cyan-rgb), 0.18);
    color: #bffcff;
}

.product-btn svg {
    width: 14px;
    height: 14px;
}

.product-btn::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(
        from 0deg,
        rgba(167, 72, 255, 0.95) 0deg,
        rgba(119, 54, 248, 0.9) 95deg,
        rgba(var(--neon-cyan-rgb), 0.9) 200deg,
        rgba(0, 207, 255, 0.95) 300deg,
        rgba(167, 72, 255, 0.95) 360deg
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    animation: wbSpin 1.7s linear infinite;
    pointer-events: none;
}

.product-btn:hover::before {
    opacity: 0.45;
}

.product-btn > * {
    position: relative;
    z-index: 1;
}

@keyframes wbSpin {
    to {
        transform: rotate(360deg);
    }
}

/* === FAQ Section === */
.faq {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-item {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* === Skeleton Loading === */
.product-card.skeleton {
    pointer-events: none;
}

.skeleton-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(110deg, var(--bg-surface) 30%, var(--bg-elevated) 50%, var(--bg-surface) 70%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-text {
    height: 14px;
    margin: 16px 20px 8px;
    border-radius: 6px;
    background: linear-gradient(110deg, var(--bg-surface) 30%, var(--bg-elevated) 50%, var(--bg-surface) 70%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite 0.1s;
}

.skeleton-text.short {
    width: 60%;
    margin-bottom: 20px;
    animation-delay: 0.2s;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === About Section === */
.about {
    position: relative;
    z-index: 2;
    padding: clamp(60px, 10vh, 120px) clamp(20px, 4vw, 60px);
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 48px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 32px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--neon-cyan-rgb), 0.12);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === Empty State === */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.4;
}

/* === Footer === */
.site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--glass-border);
    padding: 40px clamp(20px, 4vw, 60px);
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 0.92rem;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .product-footer {
        margin-top: 10px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

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

    .hero-title {
        font-size: 2.2rem;
    }
}


/* Hero subtitle links */
.hero-subtitle a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    border-bottom: 1px solid rgba(var(--neon-cyan-rgb), 0.3);
    padding-bottom: 1px;
}

.hero-subtitle a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(var(--neon-cyan-rgb), 0.5);
    border-bottom-color: #fff;
}

/* Nav overflow for many links */
.nav-links {
    flex-wrap: wrap;
    justify-content: center;
}


/* === Reviews Section (Full Width) === */
.reviews-section {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.reviews-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.reviews-track {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-cyan) transparent;
    cursor: grab;
}

.reviews-track::-webkit-scrollbar {
    height: 6px;
}

.reviews-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.reviews-track::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 3px;
}

.review-card {
    flex: 0 0 300px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-primary);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--neon-cyan-rgb), 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-stars {
    color: #ffcc00;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-photos {
    display: flex;
    gap: 8px;
    margin-top: auto;
    overflow-x: auto;
    padding-bottom: 4px;
}

.review-photo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    cursor: zoom-in;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: scale 0.2s ease;
}

.review-photo:hover {
    scale: 1.1;
    border-color: var(--neon-cyan);
}


/* === Improved Category Links === */
.category-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--neon-cyan-rgb), 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 12px rgba(var(--neon-cyan-rgb), 0.15);
    color: #fff;
}

.category-chip:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .category-chip {
        padding: 12px 16px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}
