@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Clash+Display:wght@600;700&display=swap');

:root {
  --bg: #070707;
  --bg-grad: radial-gradient(120% 120% at 20% 20%, #131b1c 0%, #0f0d11 35%, #070707 100%);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --accent: #00c7b1;
  --brass: #c7a14a;
  --link: #7f5af0;
  --text: #f7f7f7;
  --muted: #9aa0ac;
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1200px;
  --space: clamp(1rem, 1.2vw, 1.6rem);
  --space-lg: clamp(2rem, 2.5vw, 3rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: var(--bg-grad);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100%;
  background-attachment: fixed;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 16% 22%, rgba(199, 161, 74, 0.22) 0, transparent 28%),
    radial-gradient(circle at 76% 64%, rgba(0, 199, 177, 0.2) 0, transparent 30%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0, transparent 35%);
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
  width: 100%;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-main {
  padding-top: 140px;
}

.page-title-panel {
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.2rem;
  border-radius: calc(var(--radius) + 4px);
}

h1,
h2,
h3,
h4 {
  font-family: 'Clash Display', 'Manrope', sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
}

h3 {
  font-size: 1.6rem;
}

h4,
h5 {
  font-size: 1.1rem;
}

p {
  color: #d7d9dd;
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
}

.hero-admin-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.admin-secret-trigger {
  position: absolute;
  right: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.2rem;
  height: 1.3rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  opacity: 0.01;
  cursor: pointer;
}

.admin-secret-trigger:focus-visible {
  opacity: 0.95;
  outline: 2px solid rgba(0, 199, 177, 0.9);
  outline-offset: 2px;
  background: rgba(0, 199, 177, 0.15);
}

.highlight {
  color: var(--brass);
}

.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, rgba(11, 11, 14, 0.84), rgba(10, 18, 20, 0.78));
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.navbar.shrink {
  padding: 0.6rem 1.3rem;
  top: 10px;
  left: 50%;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.logo {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.1;
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #ffffff, #f6f8fb 40%, #c8ced7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #c6c8ce;
  position: relative;
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--brass), var(--accent));
  transition: width 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1090;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #e9edf3;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cart-toggle:hover,
.cart-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 199, 177, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.cart-toggle svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-toggle-label {
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-count {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, var(--brass), var(--accent));
  color: #090a0b;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-lg);
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.52);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(199, 161, 74, 0.25), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(0, 199, 177, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.5) 0%, #070707 80%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}

.hero-copy .lede {
  max-width: 560px;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.stat-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  min-width: 140px;
}

.stat span {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.hero-card {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.hero-quick-card {
  cursor: pointer;
}

.hero-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brass), var(--accent));
  color: #0b0b0b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.chip {
  padding: 0.56rem 1.02rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #e5e9ee;
  cursor: pointer;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.chip.active {
  border-color: rgba(0, 199, 177, 0.75);
  background: rgba(0, 199, 177, 0.12);
  color: #fff;
}

.chip:hover,
.chip:focus-visible {
  border-color: rgba(0, 199, 177, 0.5);
  transform: translateY(-1px);
}

.select {
  background: rgba(255, 255, 255, 0.07);
}

.filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.search-input {
  min-width: 220px;
  text-align: left;
  background: rgba(9, 12, 14, 0.85);
}

.result-count {
  margin: 0;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  width: fit-content;
}

.chip-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.section-collection {
  isolation: isolate;
}

.collection-hero {
  padding: 1.3rem 1.35rem;
  border-radius: calc(var(--radius-lg) - 2px);
  margin-bottom: 1rem;
}

.collection-hero-head {
  gap: 1.2rem;
}

.collection-trust-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.collection-trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  color: #d6dce4;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.collection-results-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.55rem;
}

.carousel-controls {
  display: flex;
  gap: 0.6rem;
}

.arrow {
  font-family: monospace;
  font-size: 1rem;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.4rem;
}

.carousel-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  flex: 0 0 min(310px, 82vw);
  scroll-snap-align: start;
}

.carousel-link {
  color: inherit;
  text-decoration: none;
}

.carousel-link:focus-visible,
.hero-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card .card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
  padding: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(199, 161, 74, 0.16);
  color: var(--brass);
  font-weight: 700;
  font-size: 0.8rem;
}

.badge-new {
  background: rgba(0, 199, 177, 0.16);
  color: var(--accent);
}

.badge-limited {
  background: rgba(199, 161, 74, 0.22);
  color: var(--brass);
}

.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), var(--brass));
  opacity: 0.5;
}

.timeline-steps {
  display: grid;
  gap: 1rem;
  margin-left: 40px;
}

.timeline-card {
  padding: 1.4rem;
}

.timeline-card::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0, 199, 177, 0.15);
}

.flavors-showcase {
  overflow: hidden;
}

.flavors-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 55% at 20% 20%, rgba(199, 161, 74, 0.1), transparent 70%),
    radial-gradient(45% 45% at 85% 75%, rgba(127, 90, 240, 0.1), transparent 72%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.015), transparent 40%);
  pointer-events: none;
}

.flavor-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(340px, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: stretch;
}

.flavor-visual {
  min-height: 560px;
}

.flavor-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-content {
  position: relative;
  z-index: 1;
}

.flavor-heading {
  margin-top: 0.45rem;
  max-width: 13ch;
  line-height: 0.95;
}

.text-rainbow {
  display: inline-block;
  background: linear-gradient(90deg, #f3c34f 10%, #ff8dad 45%, #f3c34f 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flavor-description {
  margin-top: 1rem;
  max-width: 56ch;
}

.flavor-catalog {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.flavor-item {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  min-height: 170px;
  border-color: rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.flavor-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 199, 177, 0.5);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
}

.flavor-icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
}

.flavor-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flavor-item:nth-child(3n + 1) .flavor-icon {
  color: #ff8da8;
  background: rgba(255, 141, 168, 0.14);
}

.flavor-item:nth-child(3n + 2) .flavor-icon {
  color: #66f3a7;
  background: rgba(102, 243, 167, 0.12);
}

.flavor-item:nth-child(3n) .flavor-icon {
  color: #f7cd5f;
  background: rgba(247, 205, 95, 0.14);
}

.flavor-item h4 {
  font-size: 1.36rem;
}

.flavor-price {
  color: #f5c752;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.flavor-actions {
  margin-top: auto;
  padding-top: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.flavor-add-btn {
  flex: 1;
  min-height: 2.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.flavor-add-btn:hover,
.flavor-add-btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 199, 82, 0.65);
  transform: translateY(-1px);
}

.flavor-chat-link {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8ebf2;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.flavor-chat-link:hover,
.flavor-chat-link:focus-visible {
  border-color: rgba(0, 199, 177, 0.7);
  color: #fff;
  transform: translateY(-1px);
}

.flavor-chat-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flavor-more-link {
  display: inline-flex;
  margin-top: 1.15rem;
  color: #f7c84e;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flavor-more-link:hover {
  color: #ffe08c;
}

.testimonials {
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 50% 70%, rgba(199, 161, 74, 0.09), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 30%);
}

.testimonials-eyebrow {
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--brass);
}

.testimonials-heading {
  margin: 0 auto 1.35rem;
  max-width: 14ch;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-status {
  margin: 0 auto 1.2rem;
  max-width: 62ch;
  text-align: center;
}

.reviews-status.is-error {
  color: #f4b8b8;
}

.reviews-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.reviews-link {
  justify-content: center;
  min-width: 225px;
}

.testimonial-card {
  display: grid;
  gap: 0.78rem;
  min-height: 320px;
  padding: 1.25rem;
  border-color: rgba(255, 255, 255, 0.12);
}

.quote-symbol {
  font-family: 'Clash Display', 'Manrope', sans-serif;
  font-size: 4rem;
  line-height: 0.75;
  color: rgba(199, 161, 74, 0.6);
}

.star-row {
  color: #ffd356;
  letter-spacing: 0.22em;
  font-size: 1.04rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.12rem;
  line-height: 1.52;
  color: #f4f5f6;
}

.reviewer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #0e1115;
  font-weight: 800;
  background: linear-gradient(120deg, #f7c552, #ff7dbd);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.review-meta {
  display: grid;
  gap: 0.1rem;
}

.review-time {
  font-size: 0.82rem;
}

.review-empty-card {
  min-height: auto;
  max-width: 720px;
  margin: 0 auto;
}

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

.store-grid,
.product-grid,
.masonry,
.flavor-grid,
.flavor-catalog,
.testimonial-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 680px;
}

.flavor-card {
  padding: 1.2rem;
  min-height: 170px;
}

.flavor-card .tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tags span,
.tags a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #e8eaee;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.social-link {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8eaee;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 199, 177, 0.7);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.store-card img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.store-meta {
  padding: 1rem 1.2rem;
}

.map-embed {
  min-height: 360px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.05rem;
}

.shop-flavors {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.shop-flavor-catalog {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.shop-flavor-card {
  padding: 1.05rem;
  display: grid;
  gap: 0.6rem;
}

.shop-flavor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.shop-flavor-head h3 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.shop-flavor-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 2rem;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 161, 74, 0.42);
  background: rgba(199, 161, 74, 0.12);
  color: #f4cf79;
  font-size: 0.88rem;
  font-weight: 700;
}

.shop-flavor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.48rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-flavor-label {
  color: #97a0ad;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 700;
}

.shop-flavor-value {
  color: #e9edf3;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: right;
}

.shop-intensity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.shop-intensity-low {
  background: rgba(127, 213, 224, 0.2);
  color: #9be8f2;
}

.shop-intensity-medium {
  background: rgba(70, 155, 242, 0.2);
  color: #87ccff;
}

.shop-intensity-high {
  background: rgba(20, 101, 192, 0.34);
  color: #84c0ff;
}

.shop-intensity-highest {
  background: rgba(0, 199, 177, 0.24);
  color: #8df3e6;
}

.shop-flavor-actions {
  margin-top: 0.12rem;
  display: flex;
  gap: 0.6rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 199, 177, 0.42);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.46);
}

.product-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.35s ease;
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.04);
}

.product-info {
  padding: 0.95rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.product-rating {
  letter-spacing: 0.08em;
  color: #ffd45f;
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.btn-mini {
  flex: 1;
  min-height: 2.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-mini:hover,
.btn-mini:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 199, 177, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.product-empty {
  padding: 1.4rem;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 150px;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  font-size: 0.9rem;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item[data-span='2'] {
  grid-row: span 2;
  grid-auto-rows: 1fr;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.lightbox.hidden {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 2;
}

.close-lightbox,
.lightbox-arrow {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}

.close-lightbox {
  top: 24px;
  right: 24px;
}

.lightbox-arrow.prev {
  left: 24px;
}

.lightbox-arrow.next {
  right: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.contact-card,
.contact-form,
.faq {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.contact-row {
  margin: 0.4rem 0;
}

.form-input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: rgba(4, 7, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 0.8rem;
}

textarea {
  resize: vertical;
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  margin-top: 0.6rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.modal-card {
  position: relative;
  max-width: 760px;
  width: min(92vw, 760px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  overflow: hidden;
  z-index: 2;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48);
}

.modal-media {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
}

.modal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumbs {
  display: flex;
  gap: 0.45rem;
  padding: 0.62rem;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.34);
}

.modal-thumb {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumb.is-active {
  border-color: rgba(0, 199, 177, 0.85);
  box-shadow: 0 0 0 1px rgba(0, 199, 177, 0.6);
}

.modal-body {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
}

.modal-meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.modal-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 180px;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 6, 8, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.age-gate.hidden {
  display: none;
}

.age-gate-card {
  width: min(560px, 100%);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  gap: 0.9rem;
  text-align: center;
}

.age-gate-card h2 {
  font-size: clamp(1.65rem, 4.4vw, 2.3rem);
}

.age-gate-actions {
  margin-top: 0.25rem;
  display: grid;
  gap: 0.65rem;
}

.age-gate-actions .btn {
  width: 100%;
  min-height: 3.15rem;
}

.age-gate-note {
  margin-top: 0.15rem;
  font-size: 0.86rem;
}

.age-gate.blocked .age-gate-card {
  border-color: rgba(241, 143, 143, 0.38);
}

@media (min-width: 640px) {
  .age-gate-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1150;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 95vw);
  height: 100vh;
  background: #090a0b;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1160;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  padding: 1rem 1rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  display: none;
}

.cart-empty.show {
  display: block;
}

.cart-items {
  display: grid;
  gap: 0.75rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.7rem;
  padding: 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-line-meta h4 {
  font-size: 0.98rem;
}

.qty-controls {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.qty-btn {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.cart-remove {
  margin-top: 0.45rem;
  border: none;
  background: none;
  color: #f18f8f;
  font-size: 0.85rem;
  cursor: pointer;
}

.cart-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 1rem 1rem;
  display: grid;
  gap: 0.75rem;
  overflow-y: auto;
  max-height: 58vh;
}

.cart-input {
  margin-bottom: 0;
}

.shipping-row {
  display: grid;
  gap: 0.35rem;
}

.shipping-select {
  width: 100%;
}

.summary-grid {
  display: grid;
  gap: 0.34rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.94rem;
}

.summary-row.total {
  margin-top: 0.2rem;
  font-size: 1.03rem;
}

.checkout-form {
  display: grid;
  gap: 0.55rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.checkout-btn,
.clear-cart-btn {
  width: 100%;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(14px);
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0.55rem 1rem;
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer {
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.72), #040405 32%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 2.6rem 0 1.45rem;
  margin-top: 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: #cfd3d9;
}

.footer-links a {
  color: #d9dee6;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(0, 199, 177, 0.75);
  text-underline-offset: 3px;
}

.notice {
  margin-top: 1.2rem;
  font-size: 0.85rem;
}

.admin-shell {
  min-height: 100vh;
  padding: 130px 0 70px;
}

.admin-layout {
  display: grid;
  gap: 1rem;
}

.admin-panel {
  padding: 1.2rem;
}

.admin-panel h2,
.admin-panel h3 {
  margin-bottom: 0.6rem;
}

.admin-login-form,
.admin-product-form {
  display: grid;
  gap: 0.65rem;
}

.admin-login-form .btn,
.admin-product-form .btn {
  justify-content: center;
}

.admin-edit-state {
  margin-bottom: 0.8rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.2rem;
}

.admin-edit-state.is-dirty {
  border-color: rgba(199, 161, 74, 0.7);
  box-shadow: 0 0 0 1px rgba(199, 161, 74, 0.4) inset;
}

.admin-workspace {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

.admin-preview-panel {
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.admin-preview-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.admin-preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-preview-body {
  padding: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.admin-preview-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.admin-preview-title-row h4 {
  font-size: 1.15rem;
}

.admin-preview-meta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-preview-thumbs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
}

.admin-preview-thumbs img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-image-manager {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.7rem;
  display: grid;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.02);
}

.admin-image-manager-head {
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
  align-items: center;
}

.admin-image-list {
  display: grid;
  gap: 0.45rem;
}

.admin-image-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem;
  display: grid;
  gap: 0.45rem;
}

.admin-image-item.is-primary {
  border-color: rgba(0, 199, 177, 0.7);
}

.admin-image-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-image-main img {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-image-label {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.admin-image-label strong,
.admin-image-label span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-image-actions {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.admin-image-actions .chip,
.admin-image-actions .btn-mini {
  min-height: 1.95rem;
}

.admin-upload {
  display: grid;
  gap: 0.45rem;
  margin-top: -0.1rem;
}

.admin-upload .chip {
  width: max-content;
}

.admin-upload-msg {
  min-height: 1.15rem;
  font-size: 0.85rem;
}

.admin-upload-msg.error {
  color: #f3aaaa;
}

.admin-upload-msg.success {
  color: #90e8cf;
}

.admin-github {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-github-toggle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.admin-github-toggle input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.admin-manual-images {
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-manual-images summary {
  cursor: pointer;
  list-style: none;
}

.admin-manual-images summary::-webkit-details-marker {
  display: none;
}

.admin-crop-modal .modal-card {
  max-width: min(720px, 96vw);
  width: 100%;
}

.admin-crop-card {
  overflow: hidden;
}

.admin-crop-body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.admin-crop-canvas-wrap {
  width: 100%;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

#adminCropCanvas {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  touch-action: none;
  cursor: grab;
}

#adminCropCanvas:active {
  cursor: grabbing;
}

.admin-crop-controls {
  display: grid;
  gap: 0.35rem;
}

.admin-auth-msg {
  min-height: 1.15rem;
  font-size: 0.9rem;
}

.admin-auth-msg.error {
  color: #f3aaaa;
}

.admin-auth-msg.success {
  color: #90e8cf;
}

.admin-dashboard.hidden {
  display: none;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.admin-list {
  display: grid;
  gap: 0.7rem;
}

.admin-list-toolbar {
  margin-bottom: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.admin-product-row {
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.45rem;
}

.admin-product-row.is-editing {
  border-color: rgba(0, 199, 177, 0.7);
  box-shadow: 0 0 0 1px rgba(0, 199, 177, 0.4) inset;
}

.admin-product-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.admin-product-meta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-product-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.admin-product-actions .chip,
.admin-product-actions .btn-mini {
  min-height: 2.05rem;
}

.admin-empty {
  padding: 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
  .admin-workspace {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brass), var(--accent));
  width: 0;
  z-index: 1200;
}

.fab {
  position: fixed;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  font-weight: 800;
}

.fab svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fab .icon-fill {
  fill: currentColor;
  stroke: none;
}

.whatsapp {
  bottom: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.to-top {
  bottom: 78px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.smoke-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: normal;
  opacity: 0.22;
  background: radial-gradient(40% 30% at 30% 20%, rgba(199, 161, 74, 0.25), transparent),
    radial-gradient(40% 30% at 70% 70%, rgba(0, 199, 177, 0.18), transparent);
  animation: drift 28s ease-in-out infinite alternate;
}

.smoke-2 {
  animation-duration: 38s;
  filter: blur(14px);
}

.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(10px, -12px, 0);
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-card {
    max-width: 620px;
    width: 100%;
  }

  .flavor-layout {
    grid-template-columns: 1fr;
  }

  .flavor-visual {
    min-height: 420px;
    max-width: 760px;
  }

  .shop-flavor-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .flavor-catalog,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: clamp(3.2rem, 10vw, 4.5rem) 0;
  }

  .admin-shell {
    padding-top: 104px;
  }

  .navbar {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    min-height: 64px;
    padding: 0.55rem 0.8rem;
    gap: 0.55rem;
    justify-content: flex-start;
    z-index: 1200;
  }

  .navbar.shrink {
    top: 0;
    left: 0;
    padding: 0.45rem 0.75rem;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 48vw;
    font-size: 0.98rem;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(5, 6, 8, 0.98);
    border-left: none;
    flex-direction: column;
    align-items: stretch;
    padding: calc(5.2rem + env(safe-area-inset-top)) 1rem calc(1rem + env(safe-area-inset-bottom));
    gap: 0.65rem;
    transform: translateY(-104%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0s linear 0.3s;
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    border-color: rgba(0, 199, 177, 0.65);
    background: rgba(0, 199, 177, 0.12);
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    order: 3;
    flex-shrink: 0;
    position: relative;
    z-index: 1210;
  }

  .mobile-toggle span {
    height: 1.8px;
  }

  .cart-toggle-label {
    display: none;
  }

  .cart-toggle {
    margin-left: auto;
    order: 2;
    padding: 0.4rem 0.55rem;
    min-height: 2.2rem;
    position: relative;
    z-index: 1210;
  }

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

  .filters {
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
  }

  .chip-group {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.3rem;
  }

  .chip-group .chip {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  #sortSelect {
    width: 100%;
  }

  .hero {
    padding-top: 110px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
    line-height: 1.05;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .stat-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat {
    min-width: 0;
    width: 100%;
  }

  .carousel {
    padding-bottom: 0.55rem;
  }

  .carousel-card {
    flex-basis: min(260px, 76vw);
  }

  .flavor-visual {
    min-height: 330px;
  }

  .flavor-heading {
    max-width: none;
  }

  .flavor-catalog,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .shop-flavor-catalog {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
  }

  .modal-card {
    grid-template-columns: 1fr;
  }

  .modal-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .glass-panel {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .smoke-layer {
    animation: none;
    opacity: 0.15;
  }

  .whatsapp {
    bottom: 74px;
  }

  .to-top {
    bottom: 130px;
  }
}

@media (max-width: 520px) {
  .logo {
    max-width: 43vw;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .admin-product-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card img {
    height: 230px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .gallery-item[data-span='2'] {
    grid-row: span 1;
  }

  .cart-drawer {
    width: 100vw;
  }

  .cart-head,
  .cart-body,
  .cart-footer {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
