/* ========== SHOP NAV ========== */
.shop-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 160, 220, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-brand:hover { color: var(--accent); }

.nav-lotus {
  color: var(--accent);
  font-size: 1.1rem;
}

.nav-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* ========== SHOP HERO ========== */
.shop-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201, 160, 220, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(212, 168, 83, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

.shop-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.shop-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.shop-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.shop-hero-accent {
  color: var(--accent);
  font-style: italic;
}

.shop-hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ========== FLASH ========== */
.shop-flash-error {
  max-width: 900px;
  margin: 0 auto 1rem;
  padding: 0.9rem 1.5rem;
  background: rgba(200, 50, 50, 0.12);
  border: 1px solid rgba(200, 50, 50, 0.3);
  border-radius: var(--radius);
  color: #f08080;
  font-size: 0.9rem;
  text-align: center;
}

/* ========== PRODUCT GRID ========== */
.shop-main {
  padding: 3rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* ========== PRODUCT CARD ========== */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 160, 220, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.product-card.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-available:hover {
  border-color: rgba(201, 160, 220, 0.3);
  box-shadow: 0 8px 40px rgba(201, 160, 220, 0.1);
  transform: translateY(-3px);
}

.product-coming-soon {
  opacity: 0;
}

.product-coming-soon.card-visible {
  opacity: 0.55;
}

.product-coming-soon:hover {
  border-color: rgba(201, 160, 220, 0.15);
}

/* Shimmer line on available card top */
.product-available::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  align-self: flex-start;
}

.product-available .product-badge {
  background: rgba(201, 160, 220, 0.15);
  color: var(--accent);
  border: 1px solid rgba(201, 160, 220, 0.25);
}

.product-coming-soon .product-badge {
  background: rgba(154, 149, 144, 0.12);
  color: var(--fg-muted);
  border: 1px solid rgba(154, 149, 144, 0.2);
}

.product-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.product-body {
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.product-tagline {
  font-size: 0.9rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.product-description {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-dot {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ========== PRODUCT FOOTER ========== */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-buy:hover {
  background: #d8b2eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 160, 220, 0.3);
}

.btn-buy:active {
  transform: translateY(0);
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn-buy:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-notify {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
  opacity: 0.6;
  cursor: default;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  background: var(--bg-manifesto);
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.trust-icon {
  font-size: 1rem;
  color: var(--accent);
}

/* ========== SUCCESS PAGE ========== */
.success-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.success-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(201, 160, 220, 0.15);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  position: relative;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent);
}

.success-symbol {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.8; text-shadow: 0 0 20px rgba(201, 160, 220, 0.3); }
  50% { opacity: 1; text-shadow: 0 0 40px rgba(201, 160, 220, 0.6); }
}

.success-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.success-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.success-sub strong {
  color: var(--gold);
}

.success-email-confirm {
  background: rgba(201, 160, 220, 0.07);
  border: 1px solid rgba(201, 160, 220, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.success-email-confirm p {
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.success-email-confirm p:last-child { margin-bottom: 0; }

.success-muted {
  font-size: 0.82rem !important;
  color: var(--fg-muted) !important;
  font-style: italic;
}

.success-message {
  margin-bottom: 2.5rem;
}

.success-message p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-style: italic;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: #d8b2eb;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ========== SHOP HERO KIT CTA ========== */
.shop-hero-kit-cta {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.7rem 1.5rem;
  background: rgba(201, 160, 220, 0.12);
  border: 1px solid rgba(201, 160, 220, 0.3);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.shop-hero-kit-cta:hover {
  background: rgba(201, 160, 220, 0.2);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ========== LINE NAV ========== */
.line-nav {
  position: sticky;
  top: 64px;
  z-index: 85;
  background: rgba(10, 10, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.line-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.line-nav-link {
  padding: 0.85rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, border-bottom-color 0.2s;
  border-bottom: 2px solid transparent;
}

.line-nav-link:hover { color: var(--fg); }
.line-nav-rage:hover { color: #e07070; border-bottom-color: #c0392b; }
.line-nav-calm:hover { color: #87a878; border-bottom-color: #87a878; }
.line-nav-petty:hover { color: #ff69b4; border-bottom-color: #ff69b4; }
.line-nav-bad-bitch:hover { color: var(--gold); border-bottom-color: var(--gold); }
.line-nav-dark-humor:hover { color: #adff2f; border-bottom-color: #adff2f; }
.line-nav-escape:hover { color: #008b8b; border-bottom-color: #008b8b; }

/* ========== SHOP LINE SECTIONS ========== */
.shop-main {
  padding: 2rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.shop-line-section {
  scroll-margin-top: 130px;
}

.shop-line-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.shop-line-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shop-line-icon {
  font-size: 2rem;
  line-height: 1;
}

.shop-line-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.shop-line-mood {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* Line name colors */
.line-rage-text { color: #e07070; }
.line-calm-text { color: #87a878; }
.line-petty-text { color: #ff69b4; }
.line-bad-bitch-text { color: var(--gold); }
.line-dark-humor-text { color: #adff2f; }
.line-escape-text { color: #008b8b; }

.btn-kit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 1.1rem;
  background: transparent;
  color: var(--fg-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-kit-link:hover {
  color: var(--accent);
  border-color: rgba(201, 160, 220, 0.35);
  background: rgba(201, 160, 220, 0.06);
}

/* ========== BUILD KIT CTA ========== */
.shop-build-kit-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(201, 160, 220, 0.06) 0%, transparent 70%);
}

.shop-build-kit-inner {
  max-width: 560px;
  margin: 0 auto;
}

.shop-build-kit-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.shop-build-kit-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .shop-hero {
    padding: 8rem 1.5rem 4rem;
  }

  .shop-main {
    padding: 2rem 1rem 4rem;
  }

  /* 2-column default on mobile — cleaner, shows more products at a glance */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Compact card layout for 2-col */
  .product-card {
    padding: 1.25rem 1rem;
  }

  .product-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .product-tagline {
    font-size: 0.78rem;
  }

  /* Hide description + features on mobile cards to keep them tight */
  .product-description,
  .product-features {
    display: none;
  }

  .trust-inner {
    gap: 1.5rem;
  }

  .success-card {
    padding: 3rem 1.75rem;
  }

  .shop-nav {
    padding: 1rem 1.5rem;
    /* Fix: prevent nav items from overflowing onto logo */
    flex-wrap: nowrap;
  }

  /* Hide nav links and search on mobile — hamburger handles navigation */
  .shop-nav .nav-links,
  .shop-nav .shop-search-container {
    display: none !important;
  }

  /* Show hamburger button on mobile */
  .shop-nav-hamburger {
    display: flex !important;
  }

  /* Mobile drawer menu — off-screen right until .is-open */
  .shop-nav-drawer {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 4rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .shop-nav-drawer.is-open {
    transform: translateX(0);
  }

  .shop-nav-drawer a {
    color: #e8e4df;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 160, 220, 0.08);
    min-height: 44px;
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    transition: color 0.2s;
  }

  .shop-nav-drawer a:hover { color: #c9a0dc; }

  .shop-nav-drawer-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #9a9590;
    font-size: 1.5rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  /* Full-width buy button — minimum 44px height */
  .btn-buy {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }

  .btn-kit-link {
    min-height: 44px;
    padding: 0.6rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .shop-line-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .line-nav-link {
    padding: 0.75rem 0.75rem;
    font-size: 0.72rem;
    /* Ensure 44px tall touch target */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .shop-build-kit-cta {
    padding: 3.5rem 1.5rem;
  }

  /* Wishlist heart — 44×44 touch target */
  .product-wishlist-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  /* Guarantee badge — keep readable at small sizes */
  .guarantee-badge {
    font-size: 10px;
  }
}

/* Very small screens (375px) — single column if 2-col is too tight */
@media (max-width: 400px) {
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card {
    padding: 1.5rem 1.25rem;
  }

  /* Restore description on single-column small screens */
  .product-description {
    display: block;
    font-size: 0.85rem;
  }
}

/* Drawer hidden on desktop — only used as mobile slide-in */
@media (min-width: 769px) {
  .shop-nav-drawer {
    display: none !important;
  }
}

/* Hamburger button — hidden on desktop, shown on mobile via media query */
.shop-nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shop-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c9a0dc;
  transition: transform 0.25s, opacity 0.25s;
}

.shop-nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.shop-nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.shop-nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search bar */
.shop-search-container { position:relative; min-width:200px; max-width:300px; flex:1; }
.search-input { width:100%; background:rgba(255,255,255,0.05); border:1px solid rgba(201,160,220,0.2); color:#e8e4df; padding:8px 14px; border-radius:8px; font-size:13px; font-family:'Outfit',sans-serif; outline:none; transition:border-color 0.2s; }
.search-input:focus { border-color:rgba(201,160,220,0.5); }
.search-input::placeholder { color:#6a6a70; }
.search-dropdown { box-shadow:0 8px 32px rgba(0,0,0,0.5); }
.search-section-label { padding:10px 14px 4px; color:#9a9590; font-size:11px; text-transform:uppercase; letter-spacing:1px; font-family:'Outfit',sans-serif; }
.search-result-item { display:flex; flex-direction:column; padding:10px 14px; text-decoration:none; transition:background 0.15s; border-bottom:1px solid rgba(255,255,255,0.04); }
.search-result-item:hover { background:rgba(201,160,220,0.08); }
.search-result-name { color:#e8e4df; font-size:13px; font-weight:500; }
.search-result-meta { color:#9a9590; font-size:11px; margin-top:2px; }
.search-no-results { padding:14px; color:#9a9590; font-size:13px; font-family:'Outfit',sans-serif; }
.search-no-results a { color:#c9a0dc; }

/* Money-back guarantee badge — subtle trust signal near buy button */
.guarantee-badge { display:block; margin-top:8px; color:#9a9590; font-size:11px; text-decoration:none; text-align:center; transition:color 0.2s; opacity:0.7; }
.guarantee-badge:hover { color:#c9a0dc; opacity:1; }

/* ========== HAMBURGER BUTTON (hidden on desktop) ========== */
.nav-hamburger {
  display: none; /* shown only inside mobile media query */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* X state when open */
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== MOBILE DROPDOWN MENU ========== */
.nav-mobile-menu {
  display: none; /* hidden by default */
  position: fixed;
  top: 62px; /* below the nav bar */
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 160, 220, 0.1);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-link {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.nav-mobile-link:last-of-type {
  border-bottom: none;
}

.nav-mobile-link:hover,
.nav-mobile-link:active {
  color: var(--accent);
}

.nav-mobile-search {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.search-input-mobile {
  width: 100%;
}
