/* ===========================
   Tokens
=========================== */
:root {
  --cream: #FFF8EC;
  --brown: #4A2511;
  --yellow: #FDF59C;
  --orange: #F2A33D;
  --pink: #E85FA0;
  --lime: #7DBF3F;

  --font-display: 'Chewy', cursive;
  --font-body: 'Quicksand', sans-serif;

  --radius: 16px;

  --utility-bar-height: 42px;
  --brand-bar-height: 70px;
  --site-nav-height: 64px;
  --header-total-height: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
}

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================
   Utility bar
=========================== */
.utility-bar {
  background: var(--brown);
  color: var(--cream);
  font-size: 13px;
  height: var(--utility-bar-height);
  display: flex;
  align-items: center;
}

.utility-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.utility-divider {
  opacity: 0.5;
}

.utility-cash {
  opacity: 0.85;
}

.utility-social {
  display: flex;
  gap: 14px;
  margin-left: 8px;
}

.utility-social a {
  font-size: 15px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.utility-social a:hover,
.utility-social a:focus-visible {
  opacity: 1;
}

/* ===========================
   Site nav (categories + about)
=========================== */
.site-nav {
  background: #F5EF99;
}

.category-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.category-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
}

.category-nav-scroll {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1;
}

.category-nav-scroll::-webkit-scrollbar {
  display: none;
}

.category-list li {
  flex-shrink: 0;
}

.category-list a {
  display: inline-block;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--brown);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.category-list a:hover,
.category-list a:focus-visible {
  border-color: var(--pink);
  color: var(--pink);
}

.category-divider {
  width: 1px;
  align-self: stretch;
  margin: 10px 4px;
  background: rgba(74, 37, 17, 0.2);
}

.category-dropdown {
  position: relative;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease;
}

.category-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 6px 14px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--brown);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dropdown-caret-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px 14px 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  color: var(--brown);
}

.category-dropdown-hover-only:hover,
.category-dropdown-hover-only.is-open {
  border-color: var(--pink);
}

.category-dropdown-hover-only:hover .category-dropdown-toggle,
.category-dropdown-hover-only:hover .dropdown-caret-btn,
.category-dropdown-hover-only.is-open .category-dropdown-toggle,
.category-dropdown-hover-only.is-open .dropdown-caret-btn {
  color: var(--pink);
}

.dropdown-caret {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.category-dropdown:hover,
.category-dropdown-toggle:focus-visible {
  border-color: var(--pink);
}

.category-dropdown:hover .category-dropdown-toggle,
.category-dropdown-toggle:focus-visible {
  color: var(--pink);
}

.category-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 2px solid var(--brown);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}

.category-dropdown:hover .category-dropdown-menu,
.category-dropdown:focus-within .category-dropdown-menu,
.category-dropdown.is-open .category-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-dropdown:hover .dropdown-caret,
.category-dropdown.is-open .dropdown-caret {
  transform: rotate(180deg);
}

.category-dropdown-menu li {
  flex-shrink: initial;
}

.category-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--brown);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.category-dropdown-menu a:hover,
.category-dropdown-menu a:focus-visible {
  background: var(--yellow);
  color: var(--pink);
}

.dropdown-divider {
  height: 1px;
  background: rgba(74, 37, 17, 0.15);
  margin: 6px 4px;
}

.dropdown-soon-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(74, 37, 17, 0.45);
  padding: 6px 12px 2px;
}

.dropdown-soon a {
  display: block;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(74, 37, 17, 0.55);
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-soon a:hover,
.dropdown-soon a:focus-visible {
  background: var(--yellow);
  color: var(--pink);
}

.dropdown-soon a::after {
  content: "Soon";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 9px;
  font-weight: 700;
  background: rgba(74, 37, 17, 0.12);
  color: rgba(74, 37, 17, 0.55);
  padding: 1px 6px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.category-soon-label {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(74, 37, 17, 0.45);
  padding: 0 6px 0 2px;
  white-space: nowrap;
}

.category-soon span {
  display: inline-block;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(74, 37, 17, 0.4);
  white-space: nowrap;
  cursor: default;
  position: relative;
}

.category-soon span::after {
  content: "Soon";
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 9px;
  font-weight: 700;
  background: rgba(74, 37, 17, 0.15);
  color: rgba(74, 37, 17, 0.55);
  padding: 1px 5px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ===========================
   Brand bar (logo + order button)
=========================== */
.brand-bar {
  background: #FDF59C;
  position: relative;
  overflow: visible;
  height: var(--brand-bar-height);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.header-stack {
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-stack-logo {
  height: 203px;
  width: auto;
  position: absolute;
  left: 36px;
  top: 6px;
  z-index: 200;
  pointer-events: none;
}

.nav-logo-spacer {
  display: block;
  grid-column: 1;
  width: 1px;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.nav-logo-small {
  font-size: 18px;
  opacity: 0.75;
}

.nav-logo-big {
  font-size: 30px;
}

.nav-center-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  grid-column: 2;
}

.nav-order {
  white-space: nowrap;
}

.nav-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions .nav-order {
  position: static;
  transform: none;
}

.nav-icon-link {
  position: relative;
  font-size: 18px;
  color: var(--brown);
  transition: color 0.2s ease;
}

.nav-icon-link:hover,
.nav-icon-link:focus-visible {
  color: var(--pink);
}

.nav-icon-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--pink);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 999px;
  min-width: 14px;
  text-align: center;
}

/* ===========================
   Hamburger menu (mobile)
=========================== */
.mobile-menu-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-panel {
  display: none;
}

.category-search {
  margin-left: auto;
  padding-right: 8px;
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--brown);
  border-radius: 999px;
  overflow: hidden;
  height: 36px;
}

.search-form input {
  border: none;
  background: none;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brown);
  width: 160px;
}

.search-form input:focus {
  outline: none;
}

.search-form button {
  border: none;
  background: none;
  padding: 0 12px;
  height: 100%;
  color: var(--brown);
  cursor: pointer;
}

.category-dropdown-submenu {
  list-style: none;
  padding-left: 14px;
  margin-top: 2px;
}

.footer-links-block {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 13px;
}

.footer-links-block a {
  color: var(--cream);
  opacity: 0.85;
}

.footer-links-block a:hover {
  opacity: 1;
  text-decoration: underline;
}


/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--pink);
  color: var(--cream);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 95, 160, 0.35);
}

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #6FB8D9 0%, #8FCBE3 100%);
}

.hero-columns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-eyebrow {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(74, 37, 17, 0.35);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
}

.hero-slideshow {
  position: relative;
  width: min(45%, 520px);
  max-height: 60vh;
  flex: 0 1 420px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide .photo-placeholder,
.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.hero-slide.is-active .photo-placeholder,
.hero-slide.is-active img,
.hero-slide.is-active video {
  animation: heroKenBurns linear forwards;
  animation-duration: var(--slide-duration, 4s);
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .photo-placeholder,
  .hero-slide.is-active img,
  .hero-slide.is-active video {
    animation: none;
  }
}

.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: var(--yellow);
  text-align: center;
  white-space: normal;
  flex: 1 1 320px;
  position: relative;
  z-index: 2;
  -webkit-text-stroke: 2px var(--brown);
}

/* ===========================
   Order banner
=========================== */
.order-banner {
  background: var(--brown);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 24px;
  flex-wrap: wrap;
  text-align: center;
}

.order-banner-text {
  font-size: 18px;
  font-weight: 600;
}

/* ===========================
   Category grid
=========================== */
.category-grid-section {
  padding: 70px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: var(--header-total-height);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.category-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--brown);
}

.category-tile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--orange);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-tile:hover .category-tile-photo,
.category-tile:active .category-tile-photo {
  transform: translateY(-6px);
  border-color: var(--pink);
}

.category-tile:hover .category-tile-photo img,
.category-tile:active .category-tile-photo img {
  transform: scale(1.08);
}

.category-tile-label {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brown);
}

/* Coming soon tiles */
.category-tile-soon {
  position: relative;
  cursor: default;
}

.category-tile-soon .category-tile-photo {
  filter: grayscale(1);
  opacity: 0.55;
  border-color: rgba(74, 37, 17, 0.25);
}

.category-tile-soon .category-tile-label {
  opacity: 0.45;
}

.category-tile-soon:hover .category-tile-photo {
  transform: none;
  border-color: rgba(74, 37, 17, 0.25);
}

.category-tile-soon-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===========================
   Product grid (shave ice, etc.)
=========================== */
.product-grid-section {
  padding: 70px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: var(--header-total-height);
}

.product-grid-section-soon {
  padding: 50px 24px;
  opacity: 0.85;
}

.product-section-intro {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 16px;
  opacity: 0.85;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
  text-align: left;
}

.product-tile {
  background: var(--cream);
  border: 2px solid rgba(74, 37, 17, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-tile:hover,
.product-tile:active {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(74, 37, 17, 0.15);
}

.product-tile-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-tile:hover .product-tile-photo img,
.product-tile:active .product-tile-photo img {
  transform: scale(1.06);
}

.product-tile-body {
  padding: 18px 18px 22px;
}

.product-tile-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 8px;
  -webkit-text-stroke: 0.5px var(--brown);
}

.product-tile-body p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.product-tile-feature {
  border: 2px dashed var(--pink);
  background: #FFF1F8;
}

.product-tile-feature .product-tile-body h3 {
  color: var(--pink);
}

/* ===========================
   Welcome strip
=========================== */
.welcome-strip {
  background: var(--orange);
  color: var(--cream);
  text-align: center;
  font-weight: 600;
  padding: 16px 24px;
  font-size: 16px;
}

/* ===========================
   Featured sections
=========================== */
.featured {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-reverse .featured-grid {
  direction: rtl;
}

.featured-reverse .featured-copy,
.featured-reverse .featured-photo {
  direction: ltr;
}

.featured-photo {
  position: relative;
}

.featured-photo,
.window-photo {
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-placeholder {
  background: var(--yellow);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-weight: 600;
  opacity: 0.6;
  border: 2px dashed var(--orange);
  transition: transform 0.4s ease;
}

.featured-photo img,
.window-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-photo:hover .photo-placeholder,
.featured-photo:hover img,
.window-photo:hover .photo-placeholder,
.window-photo:hover img {
  transform: scale(1.06);
}

.featured-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--pink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

.featured-copy h2 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--orange);
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--brown);
}

.featured-copy p {
  font-size: 17px;
  margin-bottom: 18px;
  max-width: 460px;
}

.text-link {
  font-weight: 700;
  color: var(--pink);
  display: inline-block;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

/* ===========================
   Menu nav
=========================== */
.menu-nav {
  text-align: center;
  padding: 70px 24px;
  background: var(--yellow);
}

.section-heading {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--brown);
  margin-bottom: 32px;
}

.menu-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-pill {
  background: var(--cream);
  border: 2px solid var(--brown);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.menu-pill:hover,
.menu-pill:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ===========================
   Window feature
=========================== */
.window-feature {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.window-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.window-copy h2 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--lime);
  -webkit-text-stroke: 1px var(--brown);
  margin-bottom: 16px;
}

.window-copy p {
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 14px;
}

.window-note {
  font-style: italic;
  opacity: 0.85;
}

/* ===========================
   Candy / fun block
=========================== */
.candy-block {
  background: var(--pink);
  color: var(--cream);
  text-align: center;
  padding: 90px 24px;
}

.candy-block h2 {
  font-family: var(--font-display);
  font-size: 46px;
  margin-bottom: 18px;
}

.candy-block p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}

/* ===========================
   Contact
=========================== */
.contact {
  padding: 90px 24px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  margin-top: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  margin-top: 24px;
}

.contact-form label {
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 2px solid var(--brown);
  border-radius: 10px;
  background: var(--cream);
  color: var(--brown);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 1px;
}

.contact-form button {
  margin-top: 20px;
  align-self: center;
  cursor: pointer;
  border: none;
}

/* ===========================
   Location
=========================== */
.location {
  background: var(--orange);
  color: var(--cream);
  padding: 60px 24px;
  text-align: center;
  margin-top: -20px;
  position: relative;
}

.location-block h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 12px;
}

.location-block a {
  text-decoration: underline;
}

.location-hours {
  margin-top: 10px;
  font-weight: 600;
}

/* ===========================
   Footer
=========================== */
.footer {
  position: relative;
  background: var(--brown);
  color: var(--cream);
  padding: 50px 24px 24px;
}

.footer-top {
  text-align: center;
  margin-bottom: 30px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 20px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  opacity: 0.8;
  border-top: 1px solid rgba(255,248,236,0.2);
  padding-top: 20px;
}

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

/* ===========================
   Responsive
=========================== */
@media (max-width: 860px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .featured-grid,
  .window-grid {
    grid-template-columns: 1fr;
  }

  .featured-reverse .featured-grid {
    direction: ltr;
  }

  .featured-copy p,
  .window-copy p {
    max-width: 100%;
  }

  .hero-wordmark {
    font-size: clamp(36px, 9vw, 56px);
  }

  .hero-columns {
    flex-direction: column;
    gap: 24px;
  }

  .hero-slideshow {
    width: 92%;
  }

  .hero {
    min-height: auto;
    padding: 30px 16px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-stack-logo {
    height: 83px;
    left: 12px;
    top: 4px;
  }

  .nav-logo-spacer {
    grid-column: 2;
  }

  .nav-logo-small {
    font-size: 12px;
  }

  .nav-logo-big {
    font-size: 18px;
  }

  .nav-logo-img {
    height: 40px;
  }

  .nav-center-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  :root {
    --brand-bar-height: 56px;
    --header-total-height: 98px;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 2px solid rgba(74, 37, 17, 0.15);
    box-shadow: 0 12px 24px rgba(74, 37, 17, 0.15);
    padding: 12px 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 199;
  }

  .mobile-menu-panel.is-open {
    display: block;
    max-height: 80vh;
    overflow-y: auto;
  }

  .mobile-menu-link {
    display: block;
    padding: 12px 4px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--brown);
  }

  .mobile-menu-sublist {
    list-style: none;
    padding-left: 12px;
    margin-bottom: 4px;
  }

  .mobile-menu-sublist a {
    display: block;
    padding: 8px 4px;
    font-weight: 600;
    color: var(--brown);
  }

  .mobile-soon a {
    opacity: 0.5;
  }

  .mobile-soon a span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(74, 37, 17, 0.12);
    padding: 2px 6px;
    border-radius: 999px;
    margin-left: 6px;
  }

  .mobile-menu-divider {
    height: 1px;
    background: rgba(74, 37, 17, 0.15);
    margin: 8px 0;
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }

  .mobile-menu-actions .nav-icon-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-order-btn {
    text-align: center;
    margin-top: 6px;
  }
}

@media (max-width: 500px) {
  .utility-inner {
    font-size: 12px;
  }

  .section-heading {
    font-size: 32px;
  }

  .candy-block h2 {
    font-size: 34px;
  }

  .category-tile-label {
    font-size: 16px;
  }
}

/* ===========================
   Product page
=========================== */
.product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px 80px;
  font-family: var(--font-body);
  color: var(--brown);
}

.product-page h1 {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--orange);
  -webkit-text-stroke: 1px var(--brown);
  margin-bottom: 16px;
}

.product-sticky-info {
  position: fixed;
  top: calc(var(--header-total-height) + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 90vw);
  z-index: 50;
  background: var(--cream);
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(74, 37, 17, 0.1);
  text-align: center;
}

@media (max-width: 991px) {
  .product-sticky-info {
    position: static;
    width: auto;
    box-shadow: none;
    padding: 0;
  }

  .product-sticky-spacer {
    display: none;
  }

  .product-page {
    padding: 30px 16px 60px;
  }

  .product-page h1 {
    font-size: 28px;
    word-break: break-word;
  }

  .product-page .price-new {
    font-size: 22px;
  }
}

.product-sticky-spacer {
  height: 140px;
}

.product-page .img-thumbnail {
  border: 3px solid var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(74, 37, 17, 0.12);
}

.product-page .price-new {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 28px;
}

.product-page .price-old {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 8px;
}

.product-page .nav-tabs {
  border-bottom: 2px solid rgba(74, 37, 17, 0.12);
}

.product-page .nav-tabs .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--brown);
  opacity: 0.6;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
}

.product-page .nav-tabs .nav-link.active {
  opacity: 1;
  color: var(--pink);
  border-bottom-color: var(--pink);
  background: none;
}

.product-page .btn-primary {
  background: var(--pink);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-page .btn-primary:hover,
.product-page .btn-primary:focus {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 95, 160, 0.35);
}

.product-page .alert-warning {
  background: var(--yellow);
  border: none;
  color: var(--brown);
  border-radius: 10px;
}

/* Quantity input: small, since nobody orders 100+ items */
.product-qty-group {
  max-width: 320px;
  align-items: stretch;
}

.product-qty-input {
  max-width: 60px;
  flex: 0 0 60px;
  text-align: center;
}

.product-qty-group .input-group-text {
  background: var(--cream);
  border-color: rgba(74, 37, 17, 0.2);
  font-weight: 700;
  color: var(--brown);
}

.product-qty-group .btn-primary {
  flex: 1 1 auto;
  white-space: nowrap;
  padding: 10px 24px;
  font-size: 15px;
}
