

:root {
  --pink-primary: #FF82B2;
  --pink-hover: #ff68a2;
  --pink-light: #FFE3EE;
  --pink-subtle: #FFF0F6;
  
  --purple-brand: #3B1066;
  --purple-deep: #250645;
  --purple-muted: #5C2595;
  --purple-light: #F0E8F8;
  
  --cream-bg: #FFFBF2;
  --cream-surface: #FFFFFF;
  --cream-subtle: #FFF7E6;
  
  --accent-green: #A6E22E;
  --accent-green-dark: #2F6F05;
  --accent-yellow: #FFD13B;
  --accent-orange: #FF7B39;
  --accent-cyan: #3FE0D0;
  
  --border-width: 3px;
  --border-brand: var(--border-width) solid var(--purple-brand);
  --border-brand-thin: 2px solid var(--purple-brand);
  
  --shadow-neo: 4px 4px 0px var(--purple-brand);
  --shadow-neo-lg: 6px 6px 0px var(--purple-brand);
  --shadow-neo-xl: 8px 8px 0px var(--purple-brand);
  --shadow-neo-sm: 2px 2px 0px var(--purple-brand);
  
  --font-display: 'Fredoka', 'Titan One', 'Bungee', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  
  --container-max: 1200px;
  --header-height: 80px;
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream-bg);
  color: var(--purple-brand);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(var(--purple-light) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--purple-brand);
  letter-spacing: -0.01em;
}

p {
  color: #37185c;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: var(--border-brand);
  box-shadow: var(--shadow-neo);
  background: var(--pink-primary);
  color: var(--purple-brand);
  cursor: pointer;
  transition: transform 0.15s var(--transition-bounce), box-shadow 0.15s ease, background-color 0.2s;
  text-align: center;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-neo-lg);
  background: var(--pink-hover);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-neo-sm);
}

.btn-secondary {
  background: var(--accent-yellow);
}
.btn-secondary:hover {
  background: #ffc61a;
}

.btn-green {
  background: var(--accent-green);
  color: var(--purple-deep);
}
.btn-green:hover {
  background: #94cd24;
}

.btn-purple {
  background: var(--purple-brand);
  color: #FFF;
}
.btn-purple:hover {
  background: var(--purple-muted);
}

.btn-outline {
  background: var(--cream-surface);
  color: var(--purple-brand);
}
.btn-outline:hover {
  background: var(--pink-subtle);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-neo-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: var(--border-brand-thin);
  box-shadow: var(--shadow-neo-sm);
  background: var(--cream-surface);
  color: var(--purple-brand);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge-matcha {
  background: var(--accent-green);
  color: var(--purple-brand);
}

.badge-cheese {
  background: var(--accent-yellow);
}

.badge-pink {
  background: var(--pink-primary);
  color: var(--purple-brand);
}

.badge-purple {
  background: var(--purple-brand);
  color: #FFF;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 251, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-brand);
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 0.75rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

.nav-logo-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  border: var(--border-brand);
  box-shadow: var(--shadow-neo-sm);
  background: var(--pink-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--transition-bounce);
}

.nav-brand:hover .nav-logo-circle {
  transform: rotate(-8deg) scale(1.08);
}

.nav-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--purple-brand);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: #7b42aa;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple-brand);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: var(--border-brand-thin);
  box-shadow: var(--shadow-neo-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--cream-surface);
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.status-text-desktop {
  display: inline;
}

.status-text-mobile {
  display: none;
}

.status-pill.open {
  background: #E8F8D8;
  color: var(--accent-green-dark);
}

.status-pill.late-night {
  background: #FFE8BF;
  color: #9C5700;
}

.status-pill.closed {
  background: #FEE4E8;
  color: #AF133B;
}

.status-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  min-height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-brand);
  position: relative;
  flex-shrink: 0;
}

.status-pill.open .status-dot {
  background: #2ECC71;
  box-shadow: 0 0 8px #2ECC71;
  animation: pulse-dot 1.8s infinite;
}

.status-pill.late-night .status-dot {
  background: #F39C12;
  box-shadow: 0 0 8px #F39C12;
  animation: pulse-dot 1.8s infinite;
}

.status-pill.closed .status-dot {
  background: #E74C3C;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.lang-toggle {
  display: flex;
  align-items: center;
  padding: 2px;
  background: var(--cream-surface);
  border: var(--border-brand-thin);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-neo-sm);
  flex-shrink: 0;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0.32rem 0.65rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--purple-brand);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
}

.lang-btn.active {
  background: var(--purple-brand);
  color: #FFF;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37, 6, 69, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 995;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: var(--pink-primary);
  border: var(--border-brand);
  box-shadow: var(--shadow-neo-sm);
  border-radius: 12px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease, background 0.2s, box-shadow 0.15s ease;
  line-height: 0;
}

.mobile-toggle:hover {
  background: var(--pink-hover);
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow-neo);
}

.mobile-toggle:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0px var(--purple-brand);
}

.hamburger-svg {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  overflow: visible;
  pointer-events: none;
}

.hamburger-svg .bar {
  stroke: var(--purple-brand);
  transition: transform 0.25s var(--transition-bounce), opacity 0.2s ease;
  transform-origin: 12px 12px;
}

.mobile-toggle.active .bar-mid {
  opacity: 0;
}

.mobile-toggle.active .bar-top {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .bar-bot {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer-lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 0.75rem 1.15rem;
  background: var(--cream-surface);
  border: var(--border-brand-thin);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neo-sm);
  margin-top: 0.65rem;
}

.drawer-lang-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--purple-brand);
  margin-right: auto;
  white-space: nowrap;
}

.mobile-drawer-lang-row .lang-toggle {
  flex-shrink: 0;
  margin-left: 1rem;
}

.mobile-drawer-header,
.mobile-drawer-cta {
  display: none;
}

.hero-section {
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
}

.hero-hook {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-yellow);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: var(--border-brand);
  box-shadow: var(--shadow-neo);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-brand);
  margin-bottom: 1.25rem;
  animation: hero-badge-float 3s ease-in-out infinite;
}

@keyframes hero-badge-float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(1.5deg); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--purple-brand);
  text-shadow: 2px 2px 0px var(--pink-light);
}

.hero-title .highlight-pink {
  color: #E60067;
  background: var(--pink-light);
  padding: 0 0.2em;
  border-radius: 8px;
  border: 2px dashed var(--purple-brand);
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.55;
  color: #3f1967;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-proof-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #65289f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--cream-surface);
  border: var(--border-brand-thin);
  box-shadow: var(--shadow-neo-sm);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple-brand);
  transition: all 0.2s var(--transition-bounce);
}

.chip-social:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-neo);
  background: var(--pink-subtle);
}

.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--pink-primary);
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-xl);
  padding: 1.25rem;
  transform: rotate(1.5deg);
  transition: transform 0.4s var(--transition-bounce);
}

.hero-main-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  border: var(--border-brand);
  overflow: hidden;
  background: var(--purple-deep);
  aspect-ratio: 1 / 1;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-image-frame img {
  transform: scale(1.05);
}

.hero-sticker {
  position: absolute;
  z-index: 10;
  border: var(--border-brand);
  box-shadow: var(--shadow-neo);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  pointer-events: auto;
  transition: transform 0.25s var(--transition-bounce);
}

.hero-sticker:hover {
  transform: scale(1.1) !important;
}

.sticker-1 {
  top: -16px;
  right: -16px;
  background: var(--accent-green);
  color: var(--purple-deep);
  transform: rotate(8deg);
}

.sticker-2 {
  bottom: 24px;
  left: -20px;
  background: var(--accent-yellow);
  color: var(--purple-brand);
  transform: rotate(-6deg);
}

.sticker-mascot {
  position: absolute;
  top: -30px;
  left: -25px;
  width: 80px;
  height: 80px;
  background: #FFF;
  border-radius: 50%;
  border: var(--border-brand);
  box-shadow: var(--shadow-neo);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 11;
  animation: mascot-wobble 4s ease-in-out infinite;
}

@keyframes mascot-wobble {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(8deg) translateY(-4px); }
}

.sticker-mascot img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.marquee-wrapper {
  background: var(--purple-brand);
  color: #FFF;
  border-top: var(--border-brand);
  border-bottom: var(--border-brand);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-right: 2rem;
}

.marquee-star {
  color: var(--accent-yellow);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #491d74;
}

.flavor-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  border: var(--border-brand-thin);
  background: var(--cream-surface);
  color: var(--purple-brand);
  cursor: pointer;
  box-shadow: var(--shadow-neo-sm);
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--purple-brand);
  color: #FFF;
  box-shadow: var(--shadow-neo);
}

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

.flavor-card {
  background: var(--cream-surface);
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--transition-bounce), box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-neo-xl);
}

.flavor-card-media {
  position: relative;
  border-radius: var(--radius-md);
  border: var(--border-brand-thin);
  overflow: hidden;
  aspect-ratio: 1 / 0.9;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.flavor-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.flavor-tag-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

.flavor-badge-dans {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: var(--accent-yellow);
  border: var(--border-brand-thin);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: var(--shadow-neo-sm);
  color: var(--purple-brand);
}

.flavor-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.flavor-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.flavor-card-desc {
  font-size: 0.92rem;
  color: #4b1f77;
  line-height: 1.45;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.flavor-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.ingredient-chip {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--pink-subtle);
  border: 1px solid var(--pink-primary);
  color: var(--purple-brand);
}

.flavor-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 2px dashed #E0D4ED;
}

.btn-add-stacker {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--pink-light);
  border: var(--border-brand-thin);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
  color: var(--purple-brand);
}

.btn-add-stacker:hover {
  background: var(--pink-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neo-sm);
}

.dans-pick-section {
  background: #FFF2F7;
  border-top: var(--border-brand);
  border-bottom: var(--border-brand);
  position: relative;
}

.dans-pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.dans-pick-visual {
  position: relative;
}

.skillet-card {
  background: var(--cream-surface);
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-xl);
  padding: 1.5rem;
  position: relative;
}

.skillet-img-box {
  position: relative;
  border: var(--border-brand);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--purple-brand);
}

.skillet-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skillet-tag {
  position: absolute;
  top: -14px;
  right: -10px;
  background: var(--accent-green);
  border: var(--border-brand);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-neo);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  transform: rotate(5deg);
  z-index: 5;
}

.skillet-sauce-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: var(--border-brand-thin);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-neo-sm);
}

.sauce-state-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--purple-brand);
}

.sauce-state-desc {
  font-size: 0.78rem;
  color: #65289f;
}

.dans-pick-content {
  display: flex;
  flex-direction: column;
}

.dans-quote-box {
  background: var(--accent-yellow);
  border: var(--border-brand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neo);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.dans-quote-box::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 35px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 15px solid var(--purple-brand);
}

.dans-quote-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--purple-brand);
  font-style: italic;
}

.dans-quote-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--purple-deep);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.spec-item {
  background: var(--cream-surface);
  border: var(--border-brand-thin);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  box-shadow: var(--shadow-neo-sm);
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #7b42aa;
}

.spec-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--purple-brand);
}

.sauce-picker-wrap {
  margin-bottom: 2rem;
}

.sauce-picker-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sauce-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sauce-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  border: var(--border-brand-thin);
  background: var(--cream-surface);
  box-shadow: var(--shadow-neo-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s var(--transition-bounce);
  color: var(--purple-brand);
}

.sauce-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neo);
}

.sauce-pill-btn.active {
  background: var(--purple-brand);
  color: #FFF;
  box-shadow: var(--shadow-neo);
}

.sauce-pill-btn.active .sauce-color-dot {
  border-color: #FFF;
}

.sauce-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-brand);
}

.dot-pistachio { background: #96D338; }
.dot-milk-choc { background: #794429; }
.dot-caramel-choc { background: #D9822B; }

.dans-price-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.price-stamp {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--purple-brand);
}

.price-stamp span {
  font-size: 1.1rem;
}

.price-board-section {
  padding: 5rem 0;
  position: relative;
}

.board-container {
  background: #FFFDF7;
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-xl);
  padding: 2.5rem;
  position: relative;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--border-brand);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.board-brand-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.board-mascot-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: var(--border-brand-thin);
  background: var(--pink-primary);
  overflow: hidden;
}

.board-mascot-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-title {
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-view-board-photo {
  font-size: 0.85rem;
}

.board-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.board-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.board-card {
  background: var(--cream-surface);
  border: var(--border-brand);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-neo);
}

.board-card.highlight {
  background: #FFF8DF;
  border-color: var(--purple-brand);
}

.board-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px dashed #DCCCE9;
  padding-bottom: 0.5rem;
}

.board-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.board-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.board-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple-brand);
}

.board-item-sub {
  font-size: 0.8rem;
  color: #6d339c;
  font-weight: 500;
}

.board-dots {
  flex-grow: 1;
  border-bottom: 2px dotted #C7B5DD;
  margin: 0 0.4rem;
}

.board-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple-brand);
  white-space: nowrap;
}

.board-footer-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px dashed #C7B5DD;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #65289f;
}

.stacker-section {
  background: #FAF0FE;
  border-top: var(--border-brand);
  border-bottom: var(--border-brand);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stacker-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.stacker-canvas-card {
  background: var(--cream-surface);
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 480px;
}

.stacker-stage {
  width: 100%;
  height: 380px;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
}

.stacker-base-item {
  width: 160px;
  height: 120px;
  position: relative;
  z-index: 5;
  transition: all 0.3s ease;
}

.stacked-scoops-wrap {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: -28px;
}

.scoop-blob {
  width: 150px;
  height: 95px;
  border-radius: 60% 60% 45% 45%;
  border: var(--border-brand);
  box-shadow: inset -6px -6px 0px rgba(0,0,0,0.15), var(--shadow-neo-sm);
  position: relative;
  margin-bottom: -32px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: drop-bounce 0.45s var(--transition-bounce);
  z-index: 10;
  transition: transform 0.2s;
}

@keyframes drop-bounce {
  0% { transform: translateY(-80px) scale(0.7); opacity: 0; }
  70% { transform: translateY(8px) scale(1.08, 0.92); opacity: 1; }
  100% { transform: translateY(0px) scale(1); opacity: 1; }
}

.scoop-face {
  position: absolute;
  width: 60px;
  height: 30px;
  pointer-events: none;
}

.scoop-sauce-drip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 15;
}

.empty-stack-placeholder {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #8c57b9;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.stacker-verdict-box {
  width: 100%;
  margin-top: 1.5rem;
  background: var(--accent-yellow);
  border: var(--border-brand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neo);
  padding: 1.25rem;
  text-align: center;
  animation: verdict-pop 0.3s var(--transition-bounce);
}

@keyframes verdict-pop {
  0% { transform: scale(0.92); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.verdict-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.verdict-rating-badge {
  background: var(--purple-brand);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-neo-sm);
}

.verdict-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.verdict-price-tag {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--purple-brand);
}

.stacker-controls-card {
  background: var(--cream-surface);
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-xl);
  padding: 2rem;
}

.stack-group {
  margin-bottom: 1.75rem;
}

.stack-group-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stack-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stack-option-btn {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  border: var(--border-brand-thin);
  background: var(--cream-surface);
  box-shadow: var(--shadow-neo-sm);
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--purple-brand);
}

.stack-option-btn:hover {
  transform: translateY(-2px);
  background: var(--pink-subtle);
}

.stack-option-btn.selected {
  background: var(--purple-brand);
  color: #FFF;
  box-shadow: var(--shadow-neo);
}

.stacker-action-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.location-section {
  padding: 5rem 0;
  background: var(--cream-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.location-card {
  background: var(--cream-surface);
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-address-box {
  background: var(--pink-subtle);
  border: var(--border-brand-thin);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.address-icon {
  font-size: 1.75rem;
}

.address-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.address-text p {
  font-size: 0.95rem;
  color: #4f2180;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  border: var(--border-brand-thin);
  background: var(--cream-surface);
}

.hours-row.weekend-highlight {
  background: #FFF5D7;
  border-color: var(--purple-brand);
  box-shadow: var(--shadow-neo-sm);
}

.hours-days {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.hours-time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--purple-brand);
}

.map-frame-card {
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-xl);
  overflow: hidden;
  min-height: 440px;
  background: #E8DDEE;
  position: relative;
}

.map-frame-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
  display: block;
}

.site-footer {
  background: var(--purple-deep);
  color: #FFF;
  border-top: var(--border-brand);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #FFF;
  overflow: hidden;
  background: var(--pink-primary);
}

.footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFF;
}

.footer-desc {
  color: #E2CDF4;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #E2CDF4;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--pink-primary);
  transform: translateX(4px);
}

.footer-social-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-pill);
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background: var(--pink-primary);
  color: var(--purple-brand);
  border-color: var(--purple-brand);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #C3A6E0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37, 6, 69, 0.82);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--cream-surface);
  border: var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s var(--transition-bounce);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--border-brand-thin);
  background: var(--pink-primary);
  color: var(--purple-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-neo-sm);
  transition: transform 0.2s ease;
}

.modal-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
}

.modal-board-img {
  width: 100%;
  border: var(--border-brand-thin);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  background: var(--accent-yellow);
  border: var(--border-brand);
  box-shadow: var(--shadow-neo);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--purple-brand);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s var(--transition-bounce);
  pointer-events: none;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero-grid,
  .dans-pick-grid,
  .stacker-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .board-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-visual-container {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding-inline: 1rem;
  }

  .site-header {
    height: var(--header-height);
  }

  .nav-inner {
    height: var(--header-height);
    gap: 0.5rem;
  }

  .nav-brand {
    gap: 0.5rem;
  }

  .nav-logo-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.64rem;
  }

  
  .nav-actions .status-pill {
    display: none !important;
  }

  .nav-actions .header-lang-toggle {
    display: none !important;
  }

  
  .nav-actions .btn-directions {
    display: none !important;
  }

  
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--cream-bg);
    border-bottom: var(--border-brand);
    padding: 1.25rem 1rem 1.75rem;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 998;
    box-shadow: 0 16px 36px rgba(59, 16, 102, 0.25);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
  }

  .nav-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  
  .mobile-drawer-header {
    display: flex !important;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed #E0D4ED;
  }

  .mobile-drawer-status-card {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-md);
    border: var(--border-brand-thin);
    box-shadow: var(--shadow-neo-sm);
    background: var(--cream-surface);
  }

  .mobile-drawer-status-card.open {
    background: #E8F8D8;
    color: var(--accent-green-dark);
  }

  .mobile-drawer-status-card.late-night {
    background: #FFE8BF;
    color: #9C5700;
  }

  .mobile-drawer-status-card.closed {
    background: #FEE4E8;
    color: #AF133B;
  }

  .drawer-status-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .drawer-status-hours {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 0.15rem;
  }

  
  .mobile-drawer-lang-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    padding: 0.75rem 1.15rem;
    background: var(--cream-surface);
    border: var(--border-brand-thin);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neo-sm);
  }

  .drawer-lang-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--purple-brand);
    margin-right: auto;
    white-space: nowrap;
  }

  .mobile-drawer-lang-row .lang-toggle {
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .nav-links-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 0.7rem 1rem;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
  }

  .nav-menu .nav-link:hover {
    background: var(--pink-light);
    border-color: var(--purple-brand);
  }

  
  .mobile-drawer-cta {
    display: block;
    margin-top: 1rem;
  }

  .btn-drawer-directions {
    width: 100%;
    font-size: 1rem;
    padding: 0.85rem;
    display: flex;
    justify-content: center;
  }

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

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

  .board-container {
    padding: 1.25rem;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .stacker-stage {
    height: 320px;
  }

  .scoop-blob {
    width: 130px;
    height: 80px;
    margin-bottom: -26px;
  }

  .stacker-base-item {
    width: 130px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-main-card {
    padding: 0.85rem;
  }

  .sticker-1 {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    right: -8px;
    top: -10px;
  }

  .sticker-2 {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    left: -8px;
    bottom: 12px;
  }

  .sticker-mascot {
    width: 60px;
    height: 60px;
    top: -20px;
    left: -12px;
  }

  .board-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .board-brand-badge {
    justify-content: center;
  }

  .btn-view-board-photo {
    width: 100%;
  }

  .dans-price-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .dans-price-row .btn {
    width: 100%;
  }

  .stacker-action-row {
    flex-direction: column;
    width: 100%;
  }

  .stacker-action-row .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 380px) {
  .nav-inner {
    gap: 0.35rem;
  }

  .nav-brand {
    gap: 0.4rem;
  }

  .nav-logo-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-sub {
    font-size: 0.58rem;
  }

  .mobile-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
