﻿/* Luna Cafe - Customer menu (original styles) */

/* Mudi Garden typography — fonts & sizes only */
:root {
  --font-display: 'Libre Caslon Text', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-display-lg: 3rem;        /* 48px */
  --lh-display-lg: 3.5rem;        /* 56px */
  --text-display-mobile: 2rem;    /* 32px */
  --lh-display-mobile: 2.5rem;  /* 40px */
  --text-headline: 1.5rem;      /* 24px */
  --lh-headline: 2rem;          /* 32px */
  --text-body-lg: 1.125rem;     /* 18px */
  --lh-body-lg: 1.75rem;        /* 28px */
  --text-body-md: 1rem;         /* 16px */
  --lh-body-md: 1.5rem;         /* 24px */
  --text-label-sm: 0.8125rem;   /* 13px */
  --lh-label-sm: 1rem;          /* 16px */
  --text-sm: 0.875rem;          /* 14px */
  --text-xs: 0.75rem;           /* 12px */
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
  font-weight: 400;
}

.menu-section-title {
  font-family: var(--font-display);
  font-size: var(--text-headline);
  line-height: var(--lh-headline);
  font-weight: 400;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.dark .logo-img {
  filter: invert(1);
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-display-mobile);
  line-height: var(--lh-display-mobile);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon {
  width: 2.25rem; /* w-9 = 36px */
  height: 2.25rem; /* h-9 = 36px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius));
  border: 1px solid transparent;
  background-color: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background-color: hsl(var(--accent));
  border-color: hsl(var(--primary) / 0.5);
}

/* Language Toggle Container */
.language-toggle-container {
  display: flex;
  align-items: center;
  gap: 0.25rem; /* gap-1 = 4px */
  border-radius: calc(var(--radius));
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 0.25rem; /* p-1 = 4px */
}

.language-toggle-btn {
  height: 1.75rem;
  padding: 0 0.75rem;
  border-radius: calc(var(--radius));
  font-family: var(--font-body);
  font-size: var(--text-label-sm);
  line-height: var(--lh-label-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background-color: transparent;
  color: hsl(var(--foreground));
}

.language-toggle-btn.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.language-toggle-btn:not(.active):hover {
  background-color: hsl(var(--accent));
}

/* Search Bar */
.search-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
  z-index: 10;
}

.search-input {
  width: 100%;
  height: 3rem;
  padding-left: 2.5rem;
  padding-right: 1rem;
  border-radius: calc(var(--radius));
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--muted) / 0.5);
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
}

.search-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

/* Campaign Banner */
.campaign-banner {
  position: relative;
  height: 380px;
  margin-bottom: 1.5rem;
  border-radius: calc(var(--radius));
  overflow: hidden;
}

@media (min-width: 768px) {
  .campaign-banner {
    height: auto;
    aspect-ratio: 2 / 1;
    max-height: 280px;
  }
}

@media (min-width: 1024px) {
  .campaign-banner {
    max-height: 300px;
  }
}

.campaign-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.campaign-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.campaign-banner-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 15;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.25rem;
  font-weight: 700;
  color: hsl(var(--secondary));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.campaign-banner-body.text-light + .campaign-banner-price,
.campaign-banner-price.text-light {
  color: hsl(var(--secondary));
}

.campaign-banner-gradient {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.campaign-banner-gradient.gradient-light {
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.campaign-banner-gradient.gradient-dark {
  background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
}

.campaign-banner-text {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .campaign-banner-text {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .campaign-banner-text {
    padding: 0 3rem;
  }
}

.campaign-banner-title {
  font-family: var(--font-display);
  font-size: var(--text-headline);
  line-height: var(--lh-headline);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  text-align: justify;
  text-align-last: left;
}

.campaign-banner-body {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  text-align: justify;
  text-align-last: left;
}

.campaign-banner-title.text-light {
  color: white;
}

.campaign-banner-title.text-dark {
  color: rgb(17, 24, 39);
}

.campaign-banner-body.text-light {
  color: white;
}

.campaign-banner-body.text-dark {
  color: rgb(31, 41, 55);
}

.campaign-banner-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 20;
}

.campaign-dot {
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.4);
}

.campaign-dot.active {
  width: 1.5rem;
  background-color: white;
}

.campaign-dot:not(.active) {
  width: 0.5rem;
}

.campaign-dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.dark .campaign-dot {
  background-color: rgba(17, 24, 39, 0.4);
}

.dark .campaign-dot.active {
  background-color: rgb(17, 24, 39);
}

.dark .campaign-dot:hover {
  background-color: rgba(17, 24, 39, 0.6);
}

/* Primary Categories */
.primary-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.primary-category-card {
  position: relative;
  width: 100%;
  height: 12rem; /* h-48 = 192px */
  border-radius: calc(var(--radius));
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
  cursor: pointer;
  text-decoration: none;
  display: block;
}

@media (min-width: 768px) {
  .primary-category-card {
    height: 12rem;
  }
}

@media (min-width: 1024px) {
  .primary-category-card {
    height: 13rem;
  }
}

.primary-category-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.primary-category-card:active {
  transform: scale(0.98);
}

.primary-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.primary-category-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--lh-body-lg);
  font-weight: 700;
  text-align: center;
}

/* Secondary / tertiary — mobil: görselli kart grid */
.secondary-categories-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Secondary / tertiary — yatay pill (masaüstü alt nav) */
.secondary-categories,
.tertiary-categories {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  margin-bottom: 1.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.secondary-categories::-webkit-scrollbar,
.tertiary-categories::-webkit-scrollbar {
  display: none;
}

.secondary-category-chip {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: var(--text-label-sm);
  line-height: var(--lh-label-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  border: 1px solid hsl(var(--border) / 0.5);
  background-color: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.secondary-category-chip:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.secondary-category-chip:active {
  transform: scale(0.97);
}

.secondary-category-chip.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

@media (min-width: 768px) {
  .secondary-categories,
  .tertiary-categories {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.875rem 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
  }

  .secondary-category-chip {
    padding: 0.875rem 1.75rem;
  }
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius));
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.product-card:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: hsl(var(--muted));
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-content {
  padding: 1rem;
}

.product-card-title {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.25rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-card-ingredients {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.ingredient-icon {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.product-card-price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-left: auto;
}

/* Grouped Product Card */
.grouped-product-card {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius));
  overflow: hidden;
  transition: all 0.2s ease;
}

.grouped-product-card:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.grouped-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: hsl(var(--muted));
}

.grouped-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grouped-product-list {
  padding: 1rem;
}

.grouped-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  margin: 0 -0.5rem;
  border-radius: calc(var(--radius));
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: hsl(var(--foreground));
  cursor: pointer;
}

.grouped-product-item:hover {
  background-color: hsl(var(--accent) / 0.5);
}

.grouped-product-item.unavailable {
  opacity: 0.6;
  cursor: not-allowed;
  color: hsl(var(--muted-foreground));
}

.grouped-product-item-name {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  line-height: var(--lh-body-lg);
  font-weight: 400;
  flex: 1;
  min-width: 0;
}

.grouped-product-item.unavailable .grouped-product-item-name {
  color: hsl(var(--muted-foreground));
}

.grouped-product-item-price {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
  font-weight: 500;
  margin-left: 1rem;
  flex-shrink: 0;
}

.grouped-product-item.unavailable .grouped-product-item-price {
  color: hsl(var(--muted-foreground));
}

/* Simple Product List */
.simple-product-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.simple-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: calc(var(--radius));
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  transition: all 0.2s ease;
  color: hsl(var(--foreground));
}

.simple-product-item.unavailable {
  background-color: hsl(var(--muted) / 0.5);
  border-color: hsl(var(--muted));
  opacity: 0.6;
}

.simple-product-item-name {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  line-height: var(--lh-body-lg);
  font-weight: 400;
  color: hsl(var(--foreground));
  flex: 1;
}

.simple-product-item.unavailable .simple-product-item-name {
  color: hsl(var(--muted-foreground));
}

.simple-product-item-price {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-left: 1rem;
  flex-shrink: 0;
}

.simple-product-item.unavailable .simple-product-item-price {
  color: hsl(var(--muted-foreground));
}

/* Footer */
.footer {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.25rem;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: hsl(var(--foreground));
  text-decoration: underline;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.social-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: hsl(var(--accent));
  border-color: hsl(var(--primary));
}

.footer-copyright {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  line-height: 1rem;
  color: hsl(var(--muted-foreground));
}

.footer-copyright a {
  color: hsl(var(--muted-foreground));
  text-decoration: underline;
}

.footer-copyright a:hover {
  color: hsl(var(--foreground));
}

/* Loading State */
.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: hsl(var(--muted-foreground));
}

/* Floating Social Panel */
.floating-social-panel {
  position: fixed;
  right: 1.5rem; /* right-6 = 24px */
  bottom: 1.5rem; /* bottom-6 = 24px */
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* gap-3 = 12px */
}

.floating-social-icon {
  width: 3rem; /* h-12 w-12 = 48px */
  height: 3rem; /* h-12 w-12 = 48px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  color: hsl(var(--foreground));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
  transition: all 0.2s ease;
  text-decoration: none;
}

@supports (backdrop-filter: blur(8px)) {
  .floating-social-icon {
    background-color: hsl(var(--background) / 0.8);
  }
}

.floating-social-icon:hover {
  background-color: hsl(var(--accent));
  border-color: hsl(var(--primary));
  transform: scale(1.1); /* scale-110 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-social-icon svg {
  width: 1.25rem; /* h-5 w-5 = 20px */
  height: 1.25rem; /* h-5 w-5 = 20px */
}

.menu-main {
  padding: 1.5rem 1rem;
}

/* Ana sayfa: kampanya + kategoriler birlikte */
.menu-home-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-home-stack .campaign-banner {
  margin-bottom: 0;
}

.menu-home-stack .primary-categories {
  margin-top: 0;
  margin-bottom: 0;
}

.menu-home-stack #campaign-banner-container:empty {
  display: none;
}

/* Kategori sayfası: mobil kart / masaüstü liste */
.products-showcase-desktop,
.campaign-showcase-desktop {
  display: none;
}

/* Desktop: centered menu shell */
@media (min-width: 768px) {
  :root {
    --menu-shell-width: 480px;
    --menu-shell-gutter: 1rem;
  }

  html {
    scrollbar-gutter: stable;
  }

  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(var(--muted) / 0.35);
  }

  .header {
    width: 100%;
    max-width: var(--menu-shell-width);
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    position: relative;
    padding-top: 0.75rem;
  }

  .footer {
    width: 100%;
    max-width: var(--menu-shell-width);
    background: transparent;
    border-top: none;
    padding-bottom: 1.25rem;
  }

  main.container.menu-main,
  main.container.category-page {
    width: 100%;
    max-width: var(--menu-shell-width);
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
  }

  .header .container,
  .footer .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: var(--menu-shell-gutter);
    padding-right: var(--menu-shell-gutter);
    box-sizing: border-box;
    background-color: hsl(var(--background));
    border-left: 1px solid hsl(var(--border) / 0.35);
    border-right: 1px solid hsl(var(--border) / 0.35);
  }

  main.container.menu-main,
  main.container.category-page {
    padding-left: var(--menu-shell-gutter);
    padding-right: var(--menu-shell-gutter);
    box-sizing: border-box;
    background-color: hsl(var(--background));
    border-left: 1px solid hsl(var(--border) / 0.35);
    border-right: 1px solid hsl(var(--border) / 0.35);
  }

  .menu-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  main.container.category-page {
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: none;
    border-radius: 0;
  }

  .category-page .search-container {
    margin-bottom: 0.875rem;
  }

  .category-page .search-input {
    height: 2.625rem;
    font-size: var(--text-sm);
    background-color: hsl(var(--muted) / 0.35);
  }

  .category-page-header {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .category-page-title {
    font-family: var(--font-display);
    font-size: var(--text-headline);
    line-height: var(--lh-headline);
    font-weight: 400;
    color: hsl(var(--foreground));
    margin: 0 0 0.375rem;
  }

  .category-page-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.375rem;
    color: hsl(var(--muted-foreground));
    margin: 0 auto;
    max-width: 22rem;
    font-style: italic;
  }

  .products-showcase-desktop {
    display: none;
  }

  .category-page .products-showcase-mobile .products-grid {
    grid-template-columns: 1fr;
  }

  .product-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product-list-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid hsl(var(--border) / 0.25);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
    border-radius: 0.75rem;
  }

  .product-list-row:first-child {
    padding-top: 0.5rem;
  }

  .product-list-row:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }

  .product-list-row:hover {
    background-color: hsl(var(--muted) / 0.25);
  }

  .product-list-row.is-unavailable {
    opacity: 0.55;
  }

  .product-list-thumb {
    width: 6rem;
    height: 6rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid hsl(var(--border) / 0.45);
    background-color: hsl(var(--muted));
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .product-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-list-body {
    flex: 1;
    min-width: 0;
  }

  .product-list-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .product-list-title {
    font-family: var(--font-display);
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    font-weight: 400;
    color: hsl(var(--foreground));
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }

  .product-list-price {
    font-family: var(--font-body);
    font-size: var(--text-body-md);
    line-height: var(--lh-body-md);
    font-weight: 500;
    color: hsl(38 65% 28%);
    flex-shrink: 0;
  }

  .product-list-desc {
    font-family: var(--font-body);
    font-size: var(--text-label-sm);
    line-height: var(--lh-label-sm);
    color: hsl(var(--muted-foreground));
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
  }

  .product-list-tag {
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background-color: hsl(var(--muted));
    font-family: var(--font-body);
    font-size: 0.625rem;
    line-height: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
  }

  .product-list-badge {
    display: inline-block;
    margin-top: 0.375rem;
    font-size: var(--text-xs);
    color: hsl(var(--muted-foreground));
  }

  .category-page .products-showcase-mobile {
    display: none;
  }

  .category-page .products-showcase-desktop {
    display: block;
  }

  .header .container {
    border-top: 1px solid hsl(var(--border) / 0.35);
    border-radius: 0.875rem 0.875rem 0 0;
  }

  main.container.menu-main {
    box-shadow: none;
    border-radius: 0;
  }

  .footer .container {
    border-bottom: 1px solid hsl(var(--border) / 0.35);
    border-radius: 0 0 0.875rem 0.875rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  }

  .header-content {
    padding: 0.75rem 0;
  }

  .logo-text {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }

  .menu-main .search-container {
    margin-bottom: 0.875rem;
  }

  .menu-main .search-input {
    height: 2.625rem;
    font-size: var(--text-sm);
    background-color: hsl(var(--muted) / 0.35);
  }

  /* Kampanya + ana kategoriler — tek blok */
  .menu-main .menu-home-stack {
    gap: 0.625rem;
    padding: 0.625rem;
    background-color: hsl(var(--muted) / 0.2);
    border: 1px solid hsl(var(--border) / 0.35);
    border-radius: 0.875rem;
  }

  .menu-main .menu-home-stack:not(:has(.campaign-banner)) {
    padding-top: 0.625rem;
  }

  .menu-main .campaign-banner {
    aspect-ratio: 16 / 9;
    max-height: 190px;
    border-radius: 0.625rem;
    box-shadow: none;
  }

  .menu-main .campaign-banner-img {
    filter: brightness(0.9);
  }

  .menu-main .campaign-banner-gradient.gradient-light {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
  }

  .menu-main .campaign-banner-content {
    padding: 0.875rem 1rem;
    align-items: flex-end;
  }

  .menu-main .campaign-banner-text {
    padding: 0;
    max-width: 100%;
  }

  .menu-main .campaign-banner-title {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 0.125rem;
    text-align: left;
    text-align-last: left;
  }

  .menu-main .campaign-banner-body {
    font-size: var(--text-xs);
    line-height: 1rem;
    text-align: left;
    text-align-last: left;
  }

  .menu-main .campaign-banner-price {
    top: 0.625rem;
    right: 0.625rem;
    font-size: var(--text-xs);
    padding: 0.25rem 0.625rem;
  }

  .menu-main .campaign-banner-dots {
    bottom: 0.375rem;
  }

  /* Ana kategoriler — görselli, kompakt grid */
  .menu-main .primary-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
  }

  .menu-main .primary-category-card {
    height: 8.5rem;
    border-radius: 0.625rem;
    box-shadow: none;
    border: 1px solid hsl(var(--border) / 0.35);
  }

  .menu-main .primary-category-card:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .menu-main .primary-category-name {
    font-size: var(--text-sm);
    line-height: 1.25rem;
    padding: 0.625rem 0.5rem;
  }

  .menu-main .primary-category-card:last-child:nth-child(odd):not(:only-child) {
    grid-column: 1 / -1;
    width: calc(50% - 0.3125rem);
    max-width: calc(50% - 0.3125rem);
    justify-self: center;
  }

  .floating-social-panel {
    display: none;
  }
}

@media (min-width: 1024px) {
  :root {
    --menu-shell-width: 520px;
  }

  .menu-main .campaign-banner {
    max-height: 210px;
  }

  .menu-main .primary-category-card {
    height: 9rem;
  }
}

@media (min-width: 1280px) {
  :root {
    --menu-shell-width: 540px;
  }
}

.campaign-banner-img,
.primary-category-img,
.product-card-image img,
.grouped-product-image img {
  max-width: 100%;
}

/* About, product detail, category sub-pages, legal (shared helpers) */
.legal-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.legal-content { line-height: 1.8; font-family: var(--font-body); font-size: var(--text-body-md); }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-headline);
  line-height: var(--lh-headline);
  font-weight: 400;
  margin: 2rem 0 1rem;
}
.legal-content h3 {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--lh-body-lg);
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; }

.about-container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: var(--text-display-mobile);
  line-height: var(--lh-display-mobile);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.about-description, .section-content {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
  color: hsl(var(--muted-foreground));
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-headline);
  line-height: var(--lh-headline);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.separator { height: 1px; background: hsl(var(--border)); margin: 1.25rem 0; }
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: calc(var(--radius));
  border: 1px solid hsl(var(--border)); color: hsl(var(--foreground)); text-decoration: none;
  font-family: var(--font-body); font-size: var(--text-sm); line-height: 1.25rem;
}
.social-link-icon { width: 1rem; height: 1rem; }

.product-detail-container {
  max-width: 64rem; margin: 0 auto; padding: 1.5rem 1rem 3rem;
}

.product-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}

@media (min-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.product-image {
  border-radius: calc(var(--radius)); overflow: hidden;
  aspect-ratio: 1 / 1; background: hsl(var(--muted));
}

.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-title {
  font-family: var(--font-display);
  font-size: var(--text-display-mobile);
  line-height: var(--lh-display-mobile);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.product-description {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--lh-body-lg);
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: var(--text-display-mobile);
  line-height: var(--lh-display-mobile);
  font-weight: 400;
}
.product-menu-icons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.menu-icon-item {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.625rem; border-radius: calc(var(--radius));
  background: hsl(var(--muted));
  font-family: var(--font-body);
  font-size: var(--text-xs);
  line-height: 1rem;
}
.info-section-title {
  font-family: var(--font-body);
  font-size: var(--text-label-sm);
  line-height: var(--lh-label-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.info-section-content {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
  color: hsl(var(--muted-foreground));
}

.secondary-category-card,
.tertiary-category-card {
  position: relative;
  height: 10rem;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: calc(var(--radius));
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  text-align: inherit;
}

.secondary-category-card img,
.tertiary-category-card img { width: 100%; height: 100%; object-fit: cover; }

.secondary-category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 55%);
}

.secondary-category-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem; color: white;
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--lh-body-lg);
  font-weight: 700;
  text-align: center;
}

.back-button {
  display: inline-flex; align-items: center;
  padding: 0.5rem 0.75rem; margin-bottom: 1rem;
  border: none; background: transparent; color: hsl(var(--foreground));
  cursor: pointer; border-radius: calc(var(--radius));
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body-md);
}

.back-button:hover { background: hsl(var(--accent)); }

main.container.category-page {
  padding: 1.5rem 1rem;
}

/* ── Ana sayfa: geniş PC / tablet (kategori sayfası ile aynı genişlik) ── */
@media (min-width: 768px) {
  body.menu-home-route {
    display: block;
    background-color: hsl(var(--background));
  }

  body.menu-home-route .header {
    width: 100%;
    max-width: none;
    background-color: hsl(var(--background) / 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(44, 38, 33, 0.06);
    border-bottom: 1px solid hsl(var(--border) / 0.3);
    padding-top: 0;
  }

  body.menu-home-route .header .container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    border: none;
    background: transparent;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body.menu-home-route .footer {
    width: 100%;
    max-width: none;
    background: transparent;
    border: none;
    padding-bottom: 2rem;
  }

  body.menu-home-route .footer .container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body.menu-home-route main.container.menu-main {
    width: 100%;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem 1.25rem 3rem;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  body.menu-home-route .menu-main .search-container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }

  body.menu-home-route .menu-main .search-input {
    height: 2.625rem;
    border-radius: 9999px;
    font-size: var(--text-body-md);
    background-color: hsl(var(--muted) / 0.35);
    border-color: hsl(var(--border) / 0.3);
  }

  body.menu-home-route .menu-main .menu-home-stack {
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  body.menu-home-route .campaign-showcase-mobile {
    display: none !important;
  }

  body.menu-home-route .campaign-showcase-desktop {
    display: block !important;
  }

  body.menu-home-route .menu-main .campaign-banner-hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 22rem;
    max-height: 26rem;
    aspect-ratio: 21 / 9;
    margin-bottom: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 38, 33, 0.08);
  }

  body.menu-home-route .campaign-banner-hero .campaign-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.62);
  }

  body.menu-home-route .campaign-banner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(23, 18, 13, 0.84) 0%,
      rgba(23, 18, 13, 0.52) 42%,
      rgba(23, 18, 13, 0.12) 100%
    );
    pointer-events: none;
  }

  body.menu-home-route .campaign-banner-hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.5rem 3rem;
    max-width: 34rem;
  }

  body.menu-home-route .campaign-banner-hero-kicker {
    margin: 0 0 0.5rem;
    font-family: var(--font-body);
    font-size: var(--text-label-sm);
    line-height: var(--lh-label-sm);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: hsl(38 65% 58%);
  }

  body.menu-home-route .campaign-banner-hero-title {
    margin: 0 0 0.375rem;
    font-family: var(--font-display);
    font-size: var(--text-display-mobile);
    line-height: var(--lh-display-mobile);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #fff;
  }

  body.menu-home-route .campaign-banner-hero-price {
    margin: 0 0 0.625rem;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 400;
    color: hsl(43 86% 82%);
  }

  body.menu-home-route .campaign-banner-hero-desc {
    margin: 0 0 1.125rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.375rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.86);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.menu-home-route .campaign-banner-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background-color: hsl(25 28% 18%);
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--text-label-sm);
    line-height: var(--lh-label-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-home-route .campaign-banner-hero-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  body.menu-home-route .campaign-banner-hero-nav {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  body.menu-home-route .campaign-banner-hero-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  body.menu-home-route .campaign-banner-hero-nav button:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.65);
  }

  body.menu-home-route .menu-main .campaign-banner {
    max-height: none;
  }

  body.menu-home-route .menu-main .primary-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  body.menu-home-route .menu-main .primary-category-card {
    height: 10rem;
    border-radius: 0.75rem;
  }

  body.menu-home-route .menu-main .primary-category-card:last-child:nth-child(odd):not(:only-child) {
    grid-column: auto;
    width: auto;
    max-width: none;
    justify-self: stretch;
  }

  body.menu-home-route .menu-main .primary-category-name {
    font-size: var(--text-body-md);
    line-height: var(--lh-body-md);
    padding: 0.75rem;
  }
}

@media (min-width: 1024px) {
  body.menu-home-route .campaign-banner-hero {
    min-height: 24rem;
    max-height: 28rem;
  }

  body.menu-home-route .menu-main .primary-category-card {
    height: 11rem;
  }
}

/* ── Kategori sayfası: Mudi desktop/tablet chrome ── */
.category-desktop-only {
  display: none !important;
}

@media (min-width: 768px) {
  body.category-route {
    display: block;
    background-color: hsl(var(--background));
  }

  body.category-route .category-mobile-only {
    display: none !important;
  }

  body.category-route .category-desktop-only.category-desktop-header {
    display: flex !important;
  }

  body.category-route .category-alt-nav-wrapper.category-desktop-only:not([hidden]) {
    display: flex !important;
  }

  body.category-route .category-desktop-search-wrap.category-desktop-only {
    display: block !important;
  }

  body.category-route .header,
  body.category-route .footer {
    max-width: none;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  body.category-route main.container.category-page {
    width: 100%;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding: 9rem 1.25rem 6rem;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  body.category-route.category-has-secondary-nav main.container.category-page {
    padding-top: 13rem;
  }

  body.category-route.category-has-secondary-nav.category-has-subnav main.container.category-page {
    padding-top: 16.25rem;
  }

  body.category-route .products-showcase-mobile {
    display: none !important;
  }

  body.category-route .products-showcase-desktop {
    display: block !important;
  }

  .category-desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    background-color: hsl(var(--background) / 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(44, 38, 33, 0.06);
  }

  .category-desktop-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: transparent;
    color: hsl(var(--foreground));
    cursor: pointer;
    text-decoration: none;
    border-radius: 9999px;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
  }

  .category-desktop-icon-btn:hover {
    opacity: 0.75;
  }

  .category-desktop-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    pointer-events: none;
  }

  .category-desktop-logo {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    flex-shrink: 0;
  }

  .category-desktop-brand-text {
    font-family: var(--font-display);
    font-size: var(--text-display-mobile);
    line-height: var(--lh-display-mobile);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: hsl(var(--foreground));
    white-space: nowrap;
  }

  .category-alt-nav-wrapper {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    z-index: 40;
    align-items: center;
    padding: 1rem 1.25rem;
    min-height: 3.25rem;
    background-color: hsl(var(--background) / 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(var(--border) / 0.3);
  }

  .category-alt-nav-inner {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-alt-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .category-alt-nav-wrapper .secondary-categories {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .category-alt-nav-wrapper .secondary-category-chip {
    position: relative;
    flex-shrink: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    font-family: var(--font-body);
    font-size: var(--text-label-sm);
    line-height: var(--lh-label-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
  }

  .category-alt-nav-wrapper .secondary-category-chip:hover {
    background: none;
    color: hsl(var(--foreground));
    border: none;
  }

  .category-alt-nav-wrapper .secondary-category-chip.active {
    background: none;
    color: hsl(var(--foreground));
    font-weight: 700;
    border: none;
  }

  .active-category-indicator::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: hsl(var(--foreground));
  }

  body.category-route .category-subnav-slot {
    position: fixed;
    top: 7.25rem;
    left: 0;
    right: 0;
    z-index: 35;
    padding: 0.75rem 1.25rem;
    background-color: hsl(var(--background) / 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid hsl(var(--border) / 0.2);
  }

  body.category-route:not(.category-has-subnav) .category-subnav-slot {
    display: none;
  }

  body.category-route .category-subnav-slot .secondary-categories,
  body.category-route .category-subnav-slot .tertiary-categories {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 0;
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.category-route .category-subnav-slot .secondary-categories::-webkit-scrollbar,
  body.category-route .category-subnav-slot .tertiary-categories::-webkit-scrollbar {
    display: none;
  }

  body.category-route .category-subnav-slot .secondary-category-chip {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    font-family: var(--font-body);
    font-size: var(--text-label-sm);
    line-height: var(--lh-label-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    position: relative;
  }

  body.category-route .category-subnav-slot .secondary-category-chip:hover {
    background: none;
    color: hsl(var(--foreground));
    border: none;
  }

  body.category-route .category-subnav-slot .secondary-category-chip.active {
    background: none;
    color: hsl(var(--foreground));
    font-weight: 700;
    border: none;
  }

  .category-desktop-search-wrap {
    position: fixed;
    top: 4.75rem;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 0.75rem 1.25rem;
    background-color: hsl(var(--background) / 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  body.category-route.category-has-secondary-nav .category-desktop-search-wrap {
    top: 7.25rem;
  }

  body.category-route.category-has-secondary-nav.category-has-subnav .category-desktop-search-wrap {
    top: 10.5rem;
  }

  .category-desktop-search-inner {
    position: relative;
    max-width: 75rem;
    margin: 0 auto;
  }

  .category-desktop-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.125rem;
    height: 1.125rem;
    color: hsl(var(--muted-foreground));
    pointer-events: none;
  }

  .category-desktop-search-input {
    width: 100%;
    height: auto;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border) / 0.3);
    background-color: hsl(var(--muted) / 0.35);
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    font-size: var(--text-body-md);
    line-height: var(--lh-body-md);
  }

  .category-desktop-search-input:focus {
    outline: none;
    border-color: hsl(var(--foreground));
    box-shadow: 0 0 0 1px hsl(var(--foreground));
  }
}
