/* =============================================
   PureBite — tiny bites, pure delights
   ============================================= */

:root {
  --cream:        #FFF9F4;
  --white:        #FFFFFF;
  --peach-100:    #FFEFE2;
  --peach-200:    #FFDEC4;
  --peach-300:    #FFC79E;
  --peach-400:    #FBAE7E;
  --peach-500:    #F4905F;
  --peach-600:    #EE7A45;
  --peach-700:    #E06430;
  --brown-600:    #8A5A3C;
  --brown-700:    #6B4226;
  --brown-900:    #4A2E1B;
  --wa-green:     #25D366;

  --font-head: 'Pacifico', cursive;
  --font-body: 'Poppins', sans-serif;

  --shadow-soft: 0 10px 30px rgba(224, 100, 48, 0.12);
  --shadow-strong: 0 20px 45px rgba(224, 100, 48, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

/* ===== Scroll progress bar ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--peach-400), var(--peach-600), var(--peach-400));
  background-size: 200% 100%;
  z-index: 2000;
  transition: width 0.12s ease-out;
}

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

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader img {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  animation: pulse 1.1s ease-in-out infinite;
  box-shadow: var(--shadow-strong);
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 118px; height: 118px;
  margin: -59px 0 0 -59px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--peach-600), transparent 30%, var(--peach-300) 60%, transparent 90%);
  animation: spinRing 1.3s linear infinite;
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
@keyframes spinRing { to { transform: rotate(360deg); } }

/* ===== Buttons ===== */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--peach-500), var(--peach-700));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { box-shadow: var(--shadow-strong); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--brown-700);
  border: 2px solid var(--peach-400);
}
.btn-outline:hover {
  background: var(--peach-100);
  transform: translateY(-3px);
}

/* ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(3); opacity: 0; }
}
.btn-nav-order {
  background: var(--wa-green);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(37,211,102,0.35);
}
.btn-nav-order:hover { transform: translateY(-2px); }

.wa-icon { width: 20px; height: 20px; }
.wa-icon.small { width: 18px; height: 18px; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(107,66,38,0.08);
  padding: 8px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(224,100,48,0.25);
  transition: width 0.3s ease, height 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.navbar.scrolled .brand-logo { width: 40px; height: 40px; }
.brand:hover .brand-logo { transform: rotate(-12deg) scale(1.08); }
.brand-text { transition: letter-spacing 0.3s ease; }
.brand:hover .brand-text { letter-spacing: 1px; }
.brand-text {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--peach-600);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-link {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--brown-700);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  height: 2px; width: 0;
  background: var(--peach-500);
  transition: width 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--peach-600); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--brown-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
  background: radial-gradient(circle at 20% 20%, var(--peach-100) 0%, var(--cream) 55%),
              radial-gradient(circle at 80% 80%, var(--peach-200) 0%, transparent 50%);
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  z-index: 0;
}
.blob-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--peach-300), transparent 70%);
  top: -120px; left: -140px;
  animation: float1 9s ease-in-out infinite;
}
.blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--peach-200), transparent 70%);
  bottom: -140px; right: -120px;
  animation: float2 11s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform: translate(0,0);} 50%{transform: translate(30px,40px);} }
@keyframes float2 { 0%,100%{transform: translate(0,0);} 50%{transform: translate(-30px,-30px);} }

.floaty {
  position: absolute;
  font-size: 2rem;
  opacity: 0.75;
  animation: drift 6s ease-in-out infinite;
  z-index: 0;
}
.f1 { top: 18%; left: 10%; animation-delay: 0s; }
.f2 { top: 30%; right: 12%; animation-delay: 1.2s; font-size: 1.6rem; }
.f3 { bottom: 22%; left: 16%; animation-delay: 2.4s; }
.f4 { top: 60%; right: 20%; animation-delay: 3.2s; font-size: 1.5rem; }
.f5 { bottom: 12%; right: 8%; animation-delay: 1.8s; }
@keyframes drift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(12deg); }
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-logo-wrap {
  position: relative;
  width: 150px; height: 150px;
  margin: 0 auto 24px;
  animation: logoPopIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
.logo-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--peach-600), var(--peach-200), var(--peach-500), var(--peach-200), var(--peach-600));
  animation: spinRing 6s linear infinite;
  opacity: 0.9;
}
.hero-logo {
  position: relative;
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-strong);
  border: 5px solid var(--white);
  animation: bob 4s ease-in-out infinite;
}
@keyframes logoPopIn {
  0% { opacity: 0; transform: scale(0.4) rotate(-25deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--brown-900);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title span { color: var(--peach-600); }
.shimmer-text {
  background: linear-gradient(90deg, var(--peach-600) 0%, var(--peach-300) 25%, var(--peach-700) 50%, var(--peach-300) 75%, var(--peach-600) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerMove 5s linear infinite;
}
@keyframes shimmerMove {
  to { background-position: -250% center; }
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--brown-600);
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--peach-500);
  border-radius: 20px;
  z-index: 1;
}
.scroll-down span {
  position: absolute;
  top: 6px; left: 50%;
  width: 6px; height: 6px;
  background: var(--peach-500);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  70% { opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* ===== Section common ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--peach-600);
  background: var(--peach-100);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--brown-900);
  margin-bottom: 14px;
  line-height: 1.3;
  display: inline-block;
}
.section-title span { color: var(--peach-600); }
.section-title::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--peach-400), var(--peach-600));
  transform: translateX(-50%);
  transition: width 0.7s ease 0.3s;
}
.section-head.in-view .section-title::after { width: 70px; }
.section-head.light .section-title::after { background: linear-gradient(90deg, var(--peach-200), var(--white)); }
.section-sub { color: var(--brown-600); font-size: 1.02rem; }
.section-head.light .section-sub,
.section-head.light .section-title { color: var(--white); }
.section-head.light .eyebrow { background: rgba(255,255,255,0.18); color: var(--peach-100); }
.section-head.light .section-title span { color: var(--peach-200); }
.eyebrow { animation: eyebrowPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
@keyframes eyebrowPop {
  0% { opacity: 0; transform: scale(0.6); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===== About ===== */
.about { padding: 110px 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  perspective: 1000px;
}
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 6px solid var(--peach-100);
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.about-photo-wrap:hover .about-photo { box-shadow: 0 25px 55px rgba(224,100,48,0.28); }
.about-badge {
  opacity: 0;
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--peach-500), var(--peach-700));
  color: var(--white);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  box-shadow: var(--shadow-strong);
  border: 4px solid var(--white);
}
.about-media.in-view .about-badge {
  animation: badgeSpring 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}
@keyframes badgeSpring {
  0% { opacity: 0; transform: scale(0.3) rotate(-30deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.about-text { color: var(--brown-700); margin-bottom: 24px; font-size: 1.02rem; }
.about-points { margin-bottom: 32px; display: grid; gap: 14px; }
.about-points li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
  color: var(--brown-900);
  transition: transform 0.25s ease;
}
.about-points li:hover { transform: translateX(6px); }
.about-points li:hover span { transform: scale(1.15) rotate(-8deg); background: var(--peach-200); }
.about-points li span {
  transition: transform 0.25s ease, background 0.25s ease;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--peach-100);
  border-radius: 50%;
  font-size: 1.05rem;
}

/* ===== Products ===== */
.products { padding: 110px 0; background: linear-gradient(180deg, var(--cream), var(--peach-100) 100%); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 26px;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(107,66,38,0.07);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(244,144,95,0.12);
  transform: perspective(800px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  will-change: transform;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.product-card:hover::before { left: 130%; }
.product-card:hover {
  transform: perspective(800px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.product-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-100), var(--peach-200));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card:hover .product-icon {
  transform: scale(1.15) rotate(-10deg);
}
.product-card h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: var(--brown-900);
}
.product-card p {
  font-size: 0.88rem;
  color: var(--brown-600);
  margin-bottom: 20px;
  flex-grow: 1;
}
.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--peach-700);
  background: var(--peach-100);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.product-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: var(--wa-green);
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-enquire:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(37,211,102,0.3); }
.product-enquire svg { width: 15px; height: 15px; }

/* ===== Contact ===== */
.contact {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--peach-600), var(--brown-700));
  overflow: hidden;
}
.blob-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  top: -180px; right: -160px;
}
.contact-inner { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  text-align: center;
  color: var(--white);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, box-shadow 0.35s ease;
}
.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.contact-icon {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  background: rgba(255,255,255,0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  animation: ringPulse 2.2s ease-out infinite;
}
.contact-card:hover .contact-icon { transform: scale(1.12) rotate(8deg); }
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-bg svg { width: 28px; height: 28px; color: var(--white); }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-card p { opacity: 0.9; margin-bottom: 14px; font-size: 0.95rem; }
.contact-cta {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: transform 0.25s ease;
}
.contact-card:hover .contact-cta { transform: translateX(4px); }

/* ===== Footer ===== */
.footer { background: var(--brown-900); color: var(--peach-100); padding: 60px 0 30px; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-brand .brand-text { color: var(--white); }
.footer-tag {
  font-family: var(--font-head);
  color: var(--peach-300);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin-bottom: 8px; }
.footer-links a { font-size: 0.92rem; opacity: 0.85; transition: opacity 0.2s ease; }
.footer-links a:hover { opacity: 1; color: var(--peach-300); }
.footer-socials { display: flex; gap: 18px; margin-bottom: 10px; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-socials a:hover { background: var(--peach-600); transform: translateY(-4px) rotate(10deg) scale(1.1); }
.footer-socials svg { width: 20px; height: 20px; color: var(--peach-100); }
.footer-copy { font-size: 0.82rem; opacity: 0.6; margin-top: 6px; }

/* ===== Floating WhatsApp Button ===== */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  z-index: 999;
  animation: waPulse 2.4s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.12) rotate(-6deg); }
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 10px 26px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--brown-900);
  color: var(--peach-100);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { background: var(--peach-600); transform: translateY(-4px) scale(1.06); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-points li { justify-content: center; }
  .about-photo-wrap { margin-bottom: 20px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(78vw, 320px);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(107,66,38,0.15);
    transition: right 0.4s ease;
    z-index: 1100;
  }
  .nav-links.open { right: 0; }
  .btn-nav-order { margin-top: 10px; }
  .hero { padding: 120px 0 70px; }
  .hero-logo, .hero-logo-wrap { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 16px; }
  .product-card { padding: 22px 16px; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .back-to-top { width: 42px; height: 42px; bottom: 84px; right: 18px; }
}

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