/* ============================================
   JAMMIE LUNCHBAR - Complete Stylesheet
   Design: "Vers gemaakt, niet gemaakt aussi"
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #5C7A3A;
  --primary-dark: #4a6330;
  --accent: #8FB339;
  --dark: #2D2D2D;
  --page-bg: #FAF8F5;
  --flour-dust: #EDE9E3;
  --white: #ffffff;
  --black: #000000;
  --gray: #666666;
  --gray-light: #999999;
  --overlay: rgba(0, 0, 0, 0.3);
  
  --font-display: 'Abril Fatface', serif;
  --font-body: 'DM Sans', 'Open Sans', Arial, sans-serif;
  --font-handwritten: 'Abril Fatface', cursive;
  
  --container-width: 1080px;
  --container-padding: 10%;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 50px;
  --radius-full: 50%;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.16);
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  background-color: var(--page-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  width: 80%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top-bar__phone {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.top-bar__phone:hover {
  text-decoration: underline;
}

.top-bar__sep {
  opacity: 0.5;
}

.top-bar__hours {
  opacity: 0.9;
}

.top-bar__right {
  display: flex;
  align-items: center;
}

.top-bar__social {
  color: var(--white);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.top-bar__social:hover {
  opacity: 1;
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.site-header.scrolled .header__logo-svg {
  transform: scale(0.85);
  transform-origin: left center;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-svg {
  height: 55px;
  width: auto;
  transition: transform var(--transition);
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.header__nav-link:hover {
  color: var(--primary);
}

.header__nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 70vh;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 98%),
    url('https://jammie-lunchbar.be/wp-content/uploads/jammie-willebroek.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
  min-height: 70vh;
  padding: 60px 0;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.hero__illustration {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
}

.hero__cta-box {
  background: var(--primary);
  border-radius: 30px 0 0 30px;
  padding: 24px 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--white);
  max-width: 320px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transition: transform var(--transition);
}

.hero__cta-box:hover {
  transform: translateY(-4px);
}

.hero__cta-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 6px;
}

.hero__cta-phone {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero__cta-phone a {
  color: var(--white);
}

.hero__cta-phone a:hover {
  text-decoration: underline;
}

/* ============================================
   LET'S GET LUNCH SECTION
   ============================================ */
.lets-get {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.lets-get__heading {
  margin-bottom: 30px;
}

.lets-get__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.lets-get__accent {
  font-family: var(--font-handwritten);
  font-size: 63px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--accent);
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  text-transform: none;
  transition: color var(--transition);
}

.lets-get__accent:hover {
  color: var(--primary);
}

.lets-get__divider {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.lets-get__line {
  width: 400px;
  max-width: 80%;
  height: auto;
}

/* Blurb Cards */
.lets-get__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.blurbs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  background: var(--page-bg);
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.blurbs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.blurbs-card__icon {
  width: 130px;
  height: 130px;
  margin-bottom: 16px;
}

.blurbs-card__icon svg {
  width: 100%;
  height: 100%;
}

.blurbs-card__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 4px;
}

.blurbs-card__arrow {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--dark);
  line-height: 0.7;
  opacity: 0.6;
  transition: all var(--transition);
}

.blurbs-card:hover .blurbs-card__arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--accent);
}

/* ============================================
   FRESHNESS STATEMENT
   ============================================ */
.freshness {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
}

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

.freshness__text p {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  opacity: 0.95;
}

.freshness__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.freshness__image svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* ============================================
   VEEL LEKKERS - ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about__title {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about__accent {
  font-family: var(--font-handwritten);
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  transition: color var(--transition);
}

.about__accent:hover {
  color: var(--primary);
}

.about__text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  padding: 12px 28px;
  border: 2px solid var(--dark);
  border-radius: var(--radius-lg);
}

.about__cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(92,122,58,0.3);
}

.about__cta-arrow {
  font-family: var(--font-display);
  font-size: 20px;
  transition: transform var(--transition);
}

.about__cta:hover .about__cta-arrow {
  transform: translateX(4px);
}

.about__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform var(--transition);
}

.about__image:hover img {
  transform: scale(1.03);
}

/* ============================================
   OPENING HOURS SECTION
   ============================================ */
.opening {
  padding: 80px 0;
  background: var(--flour-dust);
}

.opening__inner {
  display: flex;
  justify-content: center;
}

.opening__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 60px;
  box-shadow: var(--shadow-md);
  max-width: 500px;
  width: 100%;
}

.opening__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
}

.opening__hours {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opening__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--flour-dust);
  transition: background var(--transition-fast);
}

.opening__row:last-child {
  border-bottom: none;
}

.opening__row:hover {
  background: rgba(143, 179, 57, 0.05);
}

.opening__row--highlight .opening__time {
  color: var(--primary);
  font-weight: 600;
}

.opening__day {
  font-weight: 700;
  color: var(--dark);
  min-width: 60px;
}

.opening__time {
  color: var(--gray);
  text-align: right;
  line-height: 1.6;
}

/* ============================================
   FIND US / CONTACT SECTION
   ============================================ */
.find-us {
  padding: 80px 0;
  background: var(--white);
}

.find-us__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.find-us__title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.find-us__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.find-us__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray);
  transition: color var(--transition);
}

.find-us__item svg {
  flex-shrink: 0;
  color: var(--primary);
}

.find-us__item:hover {
  color: var(--primary);
}

.find-us__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.find-us__map iframe {
  display: block;
  width: 100%;
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer__col {
  font-size: 14px;
  line-height: 1.8;
}

.footer__hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.footer__hours td {
  padding: 6px 12px 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

.footer__hours td:first-child {
  font-weight: 700;
  color: var(--white);
  padding-right: 16px;
  width: 50px;
}

.footer__hours tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}

.footer__social {
  margin-top: 16px;
}

.footer__social a {
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}

.footer__social a:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.footer__contact {
  margin-bottom: 24px;
}

.footer__contact a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer__links a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer__col--logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer__logo {
  width: 200px;
  height: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer__logo:hover {
  opacity: 1;
}

/* Copyright Bar */
.footer__copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer__copyright p {
  text-align: left;
}

.footer__copyright a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.footer__copyright a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab:active {
  transform: scale(0.95);
}

/* ============================================
   MOBILE NAVIGATION OVERLAY
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 45, 0.97);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-overlay__link {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-overlay__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-overlay__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-overlay__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-overlay__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-overlay__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-overlay__link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-overlay__link:hover {
  color: var(--accent);
}

.mobile-nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.mobile-nav-overlay__close:hover {
  background: rgba(255,255,255,0.1);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE - TABLET (768px - 980px)
   ============================================ */
@media only screen and (max-width: 980px) {
  .container {
    width: 90%;
  }

  .top-bar__hours {
    font-size: 12px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__cta-box {
    position: relative;
    bottom: auto;
    right: auto;
    border-radius: 30px;
    max-width: 100%;
    margin-top: 30px;
  }

  .hero__illustration {
    max-width: 360px;
    margin: 0 auto;
  }

  .lets-get__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .freshness__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__title {
    font-size: 36px;
  }

  .about__accent {
    font-size: 48px;
  }

  .find-us__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer__col--logo {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 10px;
  }
}

/* ============================================
   RESPONSIVE - PHONE (<767px)
   ============================================ */
@media only screen and (max-width: 767px) {
  :root {
    --container-padding: 6%;
  }

  .container {
    width: 88%;
  }

  .top-bar__inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 8px 0;
  }

  .top-bar__left {
    flex-direction: column;
    gap: 2px;
  }

  .top-bar__sep {
    display: none;
  }

  .site-header {
    padding: 14px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .header__logo-svg {
    height: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    padding: 40px 0;
  }

  .hero__illustration {
    max-width: 280px;
  }

  .hero__cta-box {
    padding: 20px 24px;
    border-radius: 20px;
  }

  .hero__cta-phone {
    font-size: 24px;
  }

  .lets-get {
    padding: 60px 0;
  }

  .lets-get__title {
    font-size: 15px;
    letter-spacing: 4px;
  }

  .lets-get__accent {
    font-size: 42px;
  }

  .lets-get__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 320px;
    margin: 0 auto;
  }

  .blurbs-card__icon {
    width: 100px;
    height: 100px;
  }

  .freshness {
    padding: 60px 0;
  }

  .freshness__text p {
    font-size: 22px;
  }

  .about {
    padding: 60px 0;
  }

  .about__title {
    font-size: 28px;
  }

  .about__accent {
    font-size: 38px;
  }

  .about__text {
    font-size: 14px;
  }

  .opening {
    padding: 50px 0;
  }

  .opening__card {
    padding: 30px 24px;
  }

  .find-us {
    padding: 50px 0;
  }

  .find-us__title {
    font-size: 22px;
  }

  .find-us__map iframe {
    height: 250px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }

  .footer__col--logo {
    justify-content: center;
  }

  .footer__logo {
    width: 160px;
  }

  .footer__copyright {
    text-align: center;
  }

  .whatsapp-fab {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   SMALL PHONE (<400px)
   ============================================ */
@media only screen and (max-width: 400px) {
  .container {
    width: 92%;
  }

  .hero__cta-phone {
    font-size: 22px;
  }

  .about__title {
    font-size: 24px;
  }

  .about__accent {
    font-size: 32px;
  }

  .freshness__text p {
    font-size: 20px;
  }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
