/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-cream: #FDF6EC;
  --bg-sand: #F0E8D8;
  --tobacco: #3D2B1F;
  --sunset: #E8703A;
  --teal: #2E9E8F;
  --tan: #C9A87C;
  --sage: #B8C5A8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  background: var(--bg-cream);
  color: var(--tobacco);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== PAPER TEXTURE ========== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ========== UTILITY ========== */
.section-padding {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.reveal-child {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

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

.reveal.visible .reveal-child:nth-child(1) { transition-delay: 0ms; }
.reveal.visible .reveal-child:nth-child(2) { transition-delay: 100ms; }
.reveal.visible .reveal-child:nth-child(3) { transition-delay: 200ms; }
.reveal.visible .reveal-child:nth-child(4) { transition-delay: 300ms; }
.reveal.visible .reveal-child:nth-child(5) { transition-delay: 400ms; }
.reveal.visible .reveal-child:nth-child(6) { transition-delay: 500ms; }
.reveal.visible .reveal-child:nth-child(7) { transition-delay: 600ms; }
.reveal.visible .reveal-child:nth-child(8) { transition-delay: 700ms; }
.reveal.visible .reveal-child:nth-child(9) { transition-delay: 800ms; }
.reveal.visible .reveal-child:nth-child(10) { transition-delay: 900ms; }

/* ========== BUTTONS ========== */
.btn-orange {
  font-family: 'Abril Fatface', serif;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border: none;
  background: var(--sunset);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 4px 4px 0 var(--tobacco);
}

.btn-orange:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--tobacco);
}

.btn-brown {
  font-family: 'Abril Fatface', serif;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--tobacco);
  background: transparent;
  color: var(--tobacco);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-brown:hover {
  background: var(--tobacco);
  color: var(--bg-cream);
}

/* ========== AGE GATE ========== */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 246, 236, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-card {
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--bg-cream);
  border: 4px solid var(--tobacco);
  box-shadow: 8px 8px 0 var(--tan);
  max-width: 420px;
  width: 90%;
}

.age-gate-badge {
  font-family: 'Abril Fatface', serif;
  font-size: 2.5rem;
  color: var(--sunset);
  margin-bottom: 1rem;
}

.age-gate-title {
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  color: var(--tobacco);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.age-gate-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--tobacco);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== NAVIGATION ========== */
.main-nav {
  position: sticky;
  top: 0;
  background: var(--bg-cream);
  z-index: 1000;
  border-bottom: 2px solid var(--sunset);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Abril Fatface', serif;
  font-size: 1.4rem;
  color: var(--tobacco);
  text-decoration: none;
}

.nav-logo-dot {
  color: var(--sunset);
}

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

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--tobacco);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sunset);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--sunset);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  color: var(--tobacco);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-phone:hover {
  color: var(--sunset);
}

.nav-cta {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: var(--sunset);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-cta:hover {
  background: #D4632E;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--tobacco);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile dropdown */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: var(--bg-cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: right 0.4s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  color: var(--tobacco);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--sunset);
}

/* ========== HERO ========== */
.hero {
  background: var(--bg-sand);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 15%, rgba(232, 112, 58, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-overline {
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sunset);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Abril Fatface', serif;
  color: var(--tobacco);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(-30px);
  animation: heroDrop 0.5s ease-out forwards;
}

@keyframes heroDrop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--tobacco);
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

/* Product tag collage */
.hero-collage {
  flex-shrink: 0;
  width: 320px;
  height: 380px;
  position: relative;
}

.collage-tag {
  position: absolute;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.collage-tag:nth-child(1) {
  background: var(--sunset);
  top: 0;
  left: 30px;
  transform: rotate(-3deg);
  animation: wobble1 4s ease-in-out infinite;
}
.collage-tag:nth-child(2) {
  background: var(--teal);
  top: 50px;
  left: 130px;
  transform: rotate(2deg);
  animation: wobble2 3.5s ease-in-out infinite;
}
.collage-tag:nth-child(3) {
  background: var(--tan);
  color: var(--tobacco);
  top: 105px;
  left: 20px;
  transform: rotate(-1deg);
  animation: wobble3 4.5s ease-in-out infinite;
}
.collage-tag:nth-child(4) {
  background: var(--sunset);
  top: 155px;
  left: 150px;
  transform: rotate(3deg);
  animation: wobble1 5s ease-in-out infinite;
}
.collage-tag:nth-child(5) {
  background: var(--teal);
  top: 210px;
  left: 40px;
  transform: rotate(-2deg);
  animation: wobble2 4s ease-in-out infinite;
}
.collage-tag:nth-child(6) {
  background: var(--tan);
  color: var(--tobacco);
  top: 260px;
  left: 160px;
  transform: rotate(1deg);
  animation: wobble3 3s ease-in-out infinite;
}
.collage-tag:nth-child(7) {
  background: var(--sunset);
  top: 310px;
  left: 50px;
  transform: rotate(-2deg);
  animation: wobble1 3.5s ease-in-out infinite;
}
.collage-tag:nth-child(8) {
  background: var(--teal);
  top: 55px;
  left: 0;
  transform: rotate(1deg);
  animation: wobble2 5s ease-in-out infinite;
}

@keyframes wobble1 {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(-1deg); }
}
@keyframes wobble2 {
  0%, 100% { transform: rotate(2deg); }
  50% { transform: rotate(0deg); }
}
@keyframes wobble3 {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--sunset);
  overflow: hidden;
  padding: 0.75rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-text {
  font-family: 'Inconsolata', monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--bg-cream);
  white-space: nowrap;
  padding-right: 1rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTION HEADERS ========== */
.section-overline {
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sunset);
  margin-bottom: 0.5rem;
}

.section-headline {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--tobacco);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--tobacco);
  opacity: 0.6;
  margin-bottom: 3rem;
}

/* ========== PRODUCTS ========== */
.products {
  background: var(--bg-sand);
}

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

.product-card {
  background: var(--bg-cream);
  border: 2px solid var(--tobacco);
  box-shadow: 4px 4px 0 var(--tan);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--sunset);
}

.product-card-band {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.product-card-band[data-color="orange"] { background: var(--sunset); }
.product-card-band[data-color="teal"] { background: var(--teal); }
.product-card-band[data-color="tan"] { background: var(--tan); }

.product-card-body {
  padding: 1.2rem 1.2rem 1rem;
}

.product-name {
  font-family: 'Abril Fatface', serif;
  font-size: 1.2rem;
  color: var(--tobacco);
  margin-bottom: 0.3rem;
}

.product-desc {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--tobacco);
  opacity: 0.65;
  margin-bottom: 0.8rem;
}

.product-tag {
  font-family: 'Inconsolata', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  display: inline-block;
}

.product-tag[data-color="orange"] {
  background: rgba(232, 112, 58, 0.12);
  color: var(--sunset);
}

.product-tag[data-color="teal"] {
  background: rgba(46, 158, 143, 0.12);
  color: var(--teal);
}

.product-tag[data-color="tan"] {
  background: rgba(201, 168, 124, 0.2);
  color: var(--tobacco);
}

/* ========== ABOUT ========== */
.about {
  background: var(--teal);
  color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.about-deco-quote {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: 'Abril Fatface', serif;
  font-size: clamp(8rem, 15vw, 14rem);
  color: var(--bg-cream);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-overline {
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg-cream);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.about-headline {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bg-cream);
  margin-bottom: 1.2rem;
}

.about-body {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--bg-cream);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-pills {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.about-pill {
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  background: var(--bg-cream);
  color: var(--sunset);
  border-radius: 3px;
}

/* Wavy divider */
.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}

.wave-divider-top {
  margin-top: -2px;
  margin-bottom: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--bg-cream);
}

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

.testimonial-card {
  background: var(--bg-sand);
  padding: 2rem 1.5rem;
  position: relative;
  border-left: 4px solid;
}

.testimonial-card:nth-child(odd) {
  border-left-color: var(--sunset);
}

.testimonial-card:nth-child(even) {
  border-left-color: var(--teal);
}

.testimonial-deco-quote {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: 'Abril Fatface', serif;
  font-size: 5rem;
  color: var(--sunset);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--tobacco);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: 'Inconsolata', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tobacco);
  opacity: 0.5;
}

/* ========== LOYALTY ========== */
.loyalty {
  background: var(--sunset);
  text-align: center;
}

.loyalty-headline {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-cream);
  margin-bottom: 0.75rem;
}

.loyalty-body {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bg-cream);
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.btn-loyalty {
  font-family: 'Abril Fatface', serif;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border: none;
  background: var(--bg-cream);
  color: var(--tobacco);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 3px 3px 0 var(--tobacco);
}

.btn-loyalty:hover {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--tobacco);
}

/* ========== STORE INFO ========== */
.store-info {
  background: var(--bg-cream);
}

.store-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.store-map-wrapper {
  border: 3px solid var(--tobacco);
  overflow: hidden;
}

.store-map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.store-details {
  padding-top: 0.5rem;
}

.store-headline {
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  color: var(--tobacco);
  margin-bottom: 1.5rem;
}

.store-detail-row {
  margin-bottom: 1.2rem;
}

.store-address {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--tobacco);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.store-phone {
  margin-bottom: 1.2rem;
}

.store-phone a {
  font-family: 'Abril Fatface', serif;
  font-size: 1.4rem;
  color: var(--sunset);
  text-decoration: none;
  transition: color 0.3s ease;
}

.store-phone a:hover {
  color: #D4632E;
}

.store-hours {
  margin-bottom: 1.2rem;
}

.store-hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  padding: 0.3rem 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
}

.store-hours-day {
  color: var(--tobacco);
  opacity: 0.6;
}

.store-hours-time {
  color: var(--tobacco);
}

.store-instagram {
  margin-bottom: 1.5rem;
}

.store-instagram a {
  font-family: 'Inconsolata', monospace;
  font-size: 1rem;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.store-instagram a:hover {
  color: #247D70;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--tobacco);
  color: var(--bg-cream);
  padding: 3rem 2rem 2rem;
  position: relative;
}

/* Orange wavy top rule via SVG */
.footer-wave {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  overflow: hidden;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

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

.footer-logo {
  font-family: 'Abril Fatface', serif;
  font-size: 1.2rem;
  color: var(--bg-cream);
}

.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--bg-cream);
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--bg-cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-contact a {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--bg-cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 1;
}

.footer-legal {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 246, 236, 0.1);
  text-align: center;
  font-family: 'Inconsolata', monospace;
  font-size: 0.75rem;
  color: var(--bg-cream);
  opacity: 0.4;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 1.2rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 65px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  color: var(--tobacco);
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--sunset);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--tobacco);
}

.breadcrumb-sep {
  margin: 0 0.4rem;
  color: var(--tan);
}

.breadcrumb-current {
  color: var(--tobacco);
}

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  background: var(--bg-sand);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(232, 112, 58, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--tobacco);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero-rule {
  width: 60px;
  border: none;
  border-top: 3px solid var(--sunset);
  margin: 0 auto 1rem;
}

.page-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--tobacco);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-card {
  background: var(--bg-cream);
  border: 2px solid var(--tobacco);
  box-shadow: 6px 6px 0 var(--tan);
  padding: 3rem;
  position: relative;
}

.product-detail-card .detail-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
}

.product-detail-card h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.8rem;
  color: var(--tobacco);
  margin-bottom: 1rem;
}

.product-detail-card p {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--tobacco);
  opacity: 0.7;
  line-height: 1.8;
  max-width: 700px;
}

.product-features {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.product-feature-pill {
  font-family: 'Inconsolata', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  border: 2px solid;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.product-feature-pill:nth-child(3n+1) {
  color: var(--sunset);
  border-color: var(--sunset);
}

.product-feature-pill:nth-child(3n+2) {
  color: var(--teal);
  border-color: var(--teal);
}

.product-feature-pill:nth-child(3n+3) {
  color: var(--tobacco);
  border-color: var(--tan);
}

.product-feature-pill:hover {
  transform: translateY(-2px);
}

/* ========== PRODUCT CTA BANNER ========== */
.product-cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--teal);
  color: var(--bg-cream);
}

.product-cta-banner h3 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--bg-cream);
  margin-bottom: 0.75rem;
}

.product-cta-banner p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bg-cream);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.product-cta-banner .btn-orange {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

/* ========== STORE COMPACT ========== */
.store-compact {
  padding: 3rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border-top: 2px solid var(--sunset);
}

.store-compact-name {
  font-family: 'Abril Fatface', serif;
  font-size: 1.2rem;
  color: var(--tobacco);
  margin-bottom: 0.5rem;
}

.store-compact-info {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--tobacco);
  opacity: 0.7;
  line-height: 1.8;
}

.store-compact-info a {
  color: var(--sunset);
  text-decoration: none;
  transition: color 0.3s ease;
}

.store-compact-info a:hover {
  color: var(--teal);
}

/* ========== PRODUCTS PAGE GRID ========== */
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.products-page-grid .product-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.products-page-grid .product-card-band {
  width: 80px;
  min-height: 100%;
  height: auto;
  flex-shrink: 0;
}

.products-page-grid .product-card-body {
  flex: 1;
}

/* ========== ABOUT PAGE EXTENDED ========== */
.about-extended {
  background: var(--bg-cream);
  padding: 4rem 2rem;
}

.about-extended-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-extended-block {
  background: var(--bg-sand);
  padding: 2rem;
  border-left: 4px solid;
  transition: transform 0.3s ease;
}

.about-extended-block:hover {
  transform: translateY(-3px);
}

.about-extended-block:nth-child(1) { border-left-color: var(--sunset); }
.about-extended-block:nth-child(2) { border-left-color: var(--teal); }
.about-extended-block:nth-child(3) { border-left-color: var(--tan); }

.about-extended-block h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.3rem;
  color: var(--tobacco);
  margin-bottom: 0.75rem;
}

.about-extended-block p {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--tobacco);
  opacity: 0.7;
  line-height: 1.7;
}

/* ========== REVIEWS PAGE ========== */
.reviews-page {
  background: var(--bg-cream);
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-sand);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid;
  position: relative;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateX(4px);
}

.review-card:nth-child(odd) { border-left-color: var(--sunset); }
.review-card:nth-child(even) { border-left-color: var(--teal); }

.review-stars {
  font-size: 0.9rem;
  color: var(--sunset);
  display: block;
  margin-bottom: 0.75rem;
}

.review-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--tobacco);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.review-author {
  font-family: 'Inconsolata', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tobacco);
  opacity: 0.5;
}

.reviews-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--sunset);
  margin-top: 1rem;
}

.reviews-cta p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--tobacco);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

/* ========== DAILY DEAL BANNER ========== */
.daily-deal-banner {
  background: var(--bg-cream);
  border-top: 2px solid var(--sunset);
  border-bottom: 2px solid var(--sunset);
  padding: 0.85rem 2rem;
}

.daily-deal-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.daily-deal-label {
  font-family: 'Abril Fatface', serif;
  font-size: 0.9rem;
  color: var(--sunset);
  flex-shrink: 0;
}

.daily-deal-sep {
  color: var(--tan);
}

.daily-deal-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--tobacco);
}

.daily-deal-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.3s ease;
  margin-left: 0.3rem;
}

.daily-deal-link:hover {
  color: var(--sunset);
}

/* ========== SPECIALS PAGE ========== */
.specials-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  background: var(--bg-sand);
  position: relative;
}

.specials-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 60%, rgba(232, 112, 58, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.specials-hero-title {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--tobacco);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.specials-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--tobacco);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.everyday-deal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.everyday-deal-card {
  background: var(--teal);
  color: var(--bg-cream);
  padding: 3rem;
  text-align: center;
  box-shadow: 6px 6px 0 var(--tobacco);
}

.everyday-deal-badge {
  font-family: 'Inconsolata', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tobacco);
  background: var(--bg-cream);
  padding: 0.4rem 1.2rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.everyday-deal-title {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--bg-cream);
  margin-bottom: 0.75rem;
}

.everyday-deal-desc {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bg-cream);
  opacity: 0.9;
}

.daily-deals {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.daily-deals-header {
  text-align: center;
  margin-bottom: 3rem;
}

.daily-deals-overline {
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sunset);
  margin-bottom: 0.5rem;
}

.daily-deals-title {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--tobacco);
  opacity: 0.6;
}

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

.deal-card {
  background: var(--bg-sand);
  padding: 2rem 1.5rem;
  border: 2px solid transparent;
  border-left: 4px solid var(--tan);
  transition: all 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--tan);
}

.deal-card.deal-today {
  border-color: var(--sunset);
  border-left-color: var(--sunset);
  box-shadow: 4px 4px 0 var(--sunset);
}

.deal-today-badge {
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg-cream);
  background: var(--sunset);
  padding: 0.2rem 0.7rem;
  border-radius: 3px;
  display: none;
  margin-bottom: 0.75rem;
}

.deal-card.deal-today .deal-today-badge {
  display: inline-block;
}

.deal-day {
  font-family: 'Inconsolata', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tobacco);
  opacity: 0.5;
  margin-bottom: 0.75rem;
  display: block;
}

.deal-card.deal-today .deal-day {
  color: var(--sunset);
  opacity: 1;
}

.deal-name {
  font-family: 'Abril Fatface', serif;
  font-size: 1.2rem;
  color: var(--tobacco);
  margin-bottom: 0.5rem;
}

.deal-desc {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--tobacco);
  opacity: 0.65;
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links, .nav-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-collage {
    width: 260px;
    height: 300px;
  }

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

  .about-deco-quote {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    opacity: 0.1;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }

  .about-extended-grid {
    grid-template-columns: 1fr;
  }

  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .products-page-grid .product-card {
    flex-direction: column;
  }

  .products-page-grid .product-card-band {
    width: 100%;
    min-height: auto;
    height: 48px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 1.25rem;
  }

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

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    display: none;
  }

  .age-gate-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .about-pills {
    justify-content: center;
  }

  .daily-deal-inner {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .daily-deal-sep {
    display: none;
  }

  .daily-deals-grid {
    grid-template-columns: 1fr;
  }
}
