/* ================= Najah's Naturals — Premium Skincare Demo ================= */

:root{
  --cream: #FBF6EE;
  --cream-deep: #F3E9D8;
  --sand: #E7D8BE;
  --sand-deep: #D9C4A0;
  --brown: #3B2E22;
  --brown-soft: #6B5B49;
  --terracotta: #B8683F;
  --terracotta-deep: #9C532F;
  --sage: #7C8863;
  --gold: #C79A56;
  --white: #FFFDF9;
  --shadow: 0 20px 50px -20px rgba(59, 46, 34, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --ff-display: 'Fraunces', 'Georgia', serif;
  --ff-body: 'Jost', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
.container{
  width:100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
section{ position: relative; }

h1,h2,h3,h4{
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--brown);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 500;
  color: var(--terracotta-deep);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 28px;
  height: 1px;
  background: var(--terracotta-deep);
  display:inline-block;
}

/* ---------- Reveal animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: .08s; }
.reveal-delay-2{ transition-delay: .16s; }
.reveal-delay-3{ transition-delay: .24s; }
.reveal-delay-4{ transition-delay: .32s; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--brown);
  color: var(--cream);
}
.btn-primary:hover{
  background: var(--terracotta-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(156,83,47,.55);
}
.btn-outline{
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover{
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-3px);
}
.btn-light{
  background: var(--cream);
  color: var(--brown);
}
.btn-light:hover{
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.btn-sm{ padding: 11px 22px; font-size: 11px; }
.btn-play{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown);
}
.btn-play .play-circle{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease);
}
.btn-play:hover .play-circle{ transform: scale(1.08); }
.btn-play svg{ margin-left: 3px; }

/* ================= Announcement bar ================= */
.announce{
  background: var(--brown);
  color: var(--cream);
  text-align:center;
  font-size: 12.5px;
  letter-spacing: .08em;
  padding: 10px 20px;
  text-transform: uppercase;
}
.announce strong{ color: var(--gold); font-weight: 600; }

/* ================= Header ================= */
header.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59,46,34,0.08);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .01em;
}
.logo .leaf{ color: var(--terracotta); }
.logo span.sub{
  display:block;
  font-family: var(--ff-body);
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 500;
  margin-top: -2px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap: 40px;
}
.main-nav a{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  color: var(--brown);
  transition: color .3s;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  height: 1.5px;
  width:0;
  background: var(--terracotta-deep);
  transition: width .35s var(--ease);
}
.main-nav a:hover{ color: var(--terracotta-deep); }
.main-nav a:hover::after{ width:100%; }
.nav-actions{
  display:flex;
  align-items:center;
  gap: 22px;
}
.nav-icon{
  width: 20px; height:20px;
  color: var(--brown);
  transition: color .3s, transform .3s;
}
.icon-btn{ position:relative; display:flex; }
.icon-btn:hover .nav-icon{ color: var(--terracotta-deep); transform: translateY(-2px); }
.cart-count{
  position:absolute;
  top:-8px; right:-9px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 700;
  width:16px; height:16px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding: 4px;
}
.hamburger span{
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

/* ================= Hero ================= */
.hero{
  padding: 70px 0 40px;
  overflow: hidden;
  position: relative;
}
.hero::before{
  content:"";
  position:absolute;
  top: -120px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  opacity: .8;
  z-index:0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap: 40px;
  position:relative;
  z-index:1;
}
.hero-copy h1{
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
}
.hero-copy h1 em{
  font-style: italic;
  color: var(--terracotta-deep);
}
.hero-copy p{
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--brown-soft);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-cta{
  display:flex;
  align-items:center;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-blob{
  position:absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 58% 42% 61% 39% / 46% 55% 45% 54%;
  background: linear-gradient(155deg, var(--sand-deep), var(--cream-deep));
  z-index:0;
  animation: blobMove 9s ease-in-out infinite;
}
@keyframes blobMove{
  0%,100%{ border-radius: 58% 42% 61% 39% / 46% 55% 45% 54%; }
  50%{ border-radius: 44% 56% 40% 60% / 58% 40% 60% 42%; }
}
.hero-img{
  position:relative;
  z-index:1;
  width: 78%;
  border-radius: 999px 999px 40px 40px;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.hero-badge{
  position:absolute;
  z-index:2;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display:flex;
  align-items:center;
  gap:12px;
  animation: floatY 4.5s ease-in-out infinite;
}
.hero-badge.badge-top{
  top: 8%;
  left: -4%;
}
.hero-badge.badge-bottom{
  bottom: 6%;
  right: -6%;
  animation-delay: .8s;
}
@keyframes floatY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}
.hero-badge .num{
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--terracotta-deep);
  line-height:1;
}
.hero-badge .lbl{
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brown-soft);
  max-width: 90px;
  line-height:1.3;
}
.hero-badge .stars{ color: var(--gold); font-size: 13px; letter-spacing: 1px; }

/* ================= Trust bar ================= */
.trust-bar{
  padding: 46px 0;
  border-top: 1px solid rgba(59,46,34,.08);
  border-bottom: 1px solid rgba(59,46,34,.08);
}
.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap: 16px;
  justify-content:center;
  text-align:left;
}
.trust-item svg{ flex-shrink:0; color: var(--terracotta-deep); width:30px; height:30px; }
.trust-item h4{ font-size: 14.5px; font-family: var(--ff-body); font-weight:600; }
.trust-item p{ font-size:12px; color: var(--brown-soft); margin:2px 0 0; }

/* ================= About ================= */
.about{ padding: 120px 0; }
.about-grid{
  display:grid;
  grid-template-columns: .85fr 1fr;
  gap: 70px;
  align-items:center;
}
.about-visual{ position:relative; }
.about-img-main{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-float{
  position:absolute;
  bottom: -40px;
  right: -46px;
  width: 46%;
  border-radius: var(--radius-md);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  object-fit: cover;
}
.about-copy h2{
  font-size: clamp(30px, 3.4vw, 42px);
  margin-bottom: 22px;
}
.about-copy p{
  color: var(--brown-soft);
  line-height: 1.8;
  font-size: 15.5px;
  margin-bottom: 20px;
  max-width: 480px;
}
.signature{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  color: var(--terracotta-deep);
  margin-top: 28px;
}
.signature span{
  display:block;
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-top: 6px;
}

/* ================= Section heading ================= */
.section-head{
  text-align:center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-head h2{
  font-size: clamp(30px, 3.6vw, 44px);
}
.section-head p{
  color: var(--brown-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 16px;
}
.section-head.left{ text-align:left; margin: 0 0 50px; }
.head-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 30px;
  margin-bottom: 56px;
}

/* ================= Products ================= */
.products{ padding: 110px 0; background: var(--cream-deep); }
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 10px 30px -18px rgba(59,46,34,.25);
}
.product-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.product-media{
  position:relative;
  overflow:hidden;
  aspect-ratio: 3/4;
  background: var(--cream);
}
.product-media img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease);
}
.product-card:hover .product-media img{ transform: scale(1.08); }
.product-tag{
  position:absolute;
  top:16px; left:16px;
  background: var(--terracotta-deep);
  color: var(--white);
  font-size: 10px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.product-quick{
  position:absolute;
  right: 14px; bottom: 14px;
  width: 42px; height:42px;
  border-radius:50%;
  background: var(--white);
  color: var(--brown);
  display:flex; align-items:center; justify-content:center;
  opacity:0;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  box-shadow: var(--shadow);
}
.product-card:hover .product-quick{ opacity:1; transform: translateY(0); }
.product-quick:hover{ background: var(--terracotta-deep); color: var(--white); }
.product-info{ padding: 22px 22px 26px; text-align:center; }
.product-info .cat{
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 8px;
  display:block;
}
.product-info h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.price-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom: 18px;
}
.price-now{ font-family: var(--ff-display); font-size:18px; color: var(--terracotta-deep); font-weight:600; }
.price-old{ font-size: 14px; color: var(--brown-soft); text-decoration: line-through; opacity:.6; }
.add-cart-btn{
  width:100%;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid var(--brown);
  background: transparent;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.add-cart-btn:hover{ background: var(--brown); color: var(--cream); }
.products-cta{ text-align:center; margin-top: 56px; }

/* ================= Ingredients callout ================= */
.ingredients{ padding: 120px 0; }
.ingredients-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items:center;
}
.ingredients-img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width:100%;
  aspect-ratio: 4/5;
  object-fit:cover;
}
.ingredient-list{ margin-top: 30px; display:flex; flex-direction:column; gap:22px; }
.ingredient-item{ display:flex; gap:18px; align-items:flex-start; }
.ingredient-icon{
  width:52px; height:52px;
  flex-shrink:0;
  border-radius:50%;
  background: var(--sand);
  display:flex; align-items:center; justify-content:center;
  color: var(--terracotta-deep);
}
.ingredient-item h4{ font-size:16px; font-weight:600; margin-bottom:4px; font-family: var(--ff-body); }
.ingredient-item p{ font-size:14px; color: var(--brown-soft); line-height:1.6; margin:0; }

/* ================= Social proof ================= */
.social-proof{
  background: var(--brown);
  color: var(--cream);
  padding: 110px 0;
  overflow:hidden;
  position: relative;
}
.sp-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:center;
}
.sp-img-wrap{ position:relative; }
.sp-img{
  border-radius: var(--radius-lg);
  width:100%;
  aspect-ratio: 4/5;
  object-fit:cover;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.sp-copy .eyebrow{ color: var(--gold); }
.sp-copy .eyebrow::before{ background: var(--gold); }
.sp-copy h2{
  color: var(--cream);
  font-size: clamp(30px, 3.4vw, 42px);
  margin-bottom: 22px;
}
.sp-stats{
  display:flex;
  gap: 40px;
  margin: 34px 0;
}
.sp-stat .num{
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight:600;
  color: var(--gold);
}
.sp-stat .lbl{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(251,246,238,.65);
  margin-top:4px;
}
.sp-quote{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 19px;
  line-height:1.6;
  color: rgba(251,246,238,.9);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 26px 0;
}
.sp-person{ display:flex; align-items:center; gap:14px; }
.sp-person img{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
.sp-person .name{ font-weight:600; font-size:14px; }
.sp-person .role{ font-size:12px; color: rgba(251,246,238,.6); }

/* ================= Promo banner ================= */
.promo{
  padding: 90px 0;
  text-align:center;
  position:relative;
  background: linear-gradient(120deg, var(--sand) 0%, var(--cream-deep) 100%);
  overflow:hidden;
}
.promo::before, .promo::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background: radial-gradient(circle, rgba(184,104,63,.18), transparent 70%);
}
.promo::before{ width:340px; height:340px; top:-140px; left:-100px; }
.promo::after{ width:300px; height:300px; bottom:-140px; right:-80px; }
.promo-inner{ position:relative; z-index:1; }
.promo .eyebrow{ justify-content:center; }
.promo h2{
  font-size: clamp(30px, 4.2vw, 52px);
  max-width: 720px;
  margin: 0 auto 16px;
}
.promo p{ color: var(--brown-soft); margin-bottom: 34px; font-size:15px; }

/* ================= New arrivals (alt product strip) ================= */
.arrivals{ padding: 120px 0; }
.arrivals-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.arrival-card{
  display:flex;
  flex-direction:column;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: 0 10px 30px -18px rgba(59,46,34,.25);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.arrival-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow); }
.arrival-media{ aspect-ratio: 4/3; overflow:hidden; }
.arrival-media img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.arrival-card:hover .arrival-media img{ transform: scale(1.06); }
.arrival-body{ padding: 24px; display:flex; align-items:center; justify-content:space-between; gap:14px; }
.arrival-body h3{ font-size:17px; margin-bottom:6px; }
.arrival-body .cat{ font-size:10.5px; text-transform:uppercase; letter-spacing:.1em; color: var(--sage); font-weight:600; }
.arrival-price{ font-family: var(--ff-display); color: var(--terracotta-deep); font-size:17px; font-weight:600; white-space:nowrap; }
.arrival-add{
  width:40px;height:40px;border-radius:50%;
  border:1px solid var(--brown);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition: all .35s var(--ease);
}
.arrival-add:hover{ background:var(--brown); color:var(--cream); }

/* ================= Testimonials ================= */
.testimonials{ padding: 110px 0; background: var(--cream-deep); }
.t-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.t-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: 0 10px 30px -18px rgba(59,46,34,.2);
  transition: transform .4s var(--ease);
}
.t-card:hover{ transform: translateY(-6px); }
.t-stars{ color: var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:16px; }
.t-card p{ font-size: 14.5px; line-height:1.75; color: var(--brown-soft); margin-bottom: 24px; }
.t-person{ display:flex; align-items:center; gap:14px; }
.t-person img{ width:46px;height:46px;border-radius:50%;object-fit:cover; }
.t-person .name{ font-weight:600; font-size:14px; }
.t-person .loc{ font-size:12px; color: var(--brown-soft); }

/* ================= Newsletter ================= */
.newsletter{ padding: 100px 0; }
.nl-box{
  background: var(--brown);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 40px;
  position:relative;
  overflow:hidden;
}
.nl-box::before{
  content:"";
  position:absolute;
  width:300px;height:300px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(199,154,86,.25), transparent 70%);
  top:-100px; right:-60px;
}
.nl-copy{ position:relative; z-index:1; max-width: 440px; }
.nl-copy h2{ color: var(--cream); font-size: clamp(26px,3vw,36px); margin-bottom:12px; }
.nl-copy p{ color: rgba(251,246,238,.7); font-size:14.5px; line-height:1.7; }
.nl-form{
  position:relative; z-index:1;
  display:flex;
  gap: 12px;
  flex-shrink:0;
  width: 100%;
  max-width: 420px;
}
.nl-form input{
  flex:1;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(251,246,238,.3);
  background: rgba(251,246,238,.08);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 13.5px;
}
.nl-form input::placeholder{ color: rgba(251,246,238,.5); }
.nl-form button{
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--brown);
  border:none;
  font-weight:700;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  transition: all .3s var(--ease);
  white-space:nowrap;
}
.nl-form button:hover{ background: var(--cream); transform: translateY(-2px); }

/* ================= Footer ================= */
footer.site-footer{
  background: var(--cream-deep);
  padding: 90px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(59,46,34,.1);
}
.footer-brand .logo{ margin-bottom: 18px; }
.footer-brand p{
  color: var(--brown-soft);
  font-size: 14px;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-social{ display:flex; gap: 12px; }
.footer-social a{
  width: 38px; height:38px;
  border-radius:50%;
  border: 1px solid var(--brown);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s var(--ease);
}
.footer-social a:hover{ background: var(--brown); color: var(--cream); transform: translateY(-3px); }
.footer-col h4{
  font-family: var(--ff-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-col ul{ display:flex; flex-direction:column; gap: 14px; }
.footer-col a{
  font-size: 14px;
  color: var(--brown-soft);
  transition: color .3s, padding-left .3s;
}
.footer-col a:hover{ color: var(--terracotta-deep); padding-left: 4px; }
.footer-contact li{ font-size:14px; color: var(--brown-soft); display:flex; gap:12px; align-items:flex-start; }
.footer-contact svg{ flex-shrink:0; margin-top:2px; color: var(--terracotta-deep); }
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 26px 0;
  font-size: 12.5px;
  color: var(--brown-soft);
  flex-wrap:wrap;
  gap: 10px;
}
.footer-bottom a{ color: var(--brown-soft); }
.footer-bottom a:hover{ color: var(--terracotta-deep); }
.footer-legal{ display:flex; gap: 24px; }

/* ================= Back to top ================= */
.to-top{
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height:48px;
  border-radius:50%;
  background: var(--brown);
  color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  opacity:0;
  visibility:hidden;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  z-index: 90;
  border:none;
}
.to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.to-top:hover{ background: var(--terracotta-deep); }

/* ================= Responsive ================= */
@media (max-width: 1080px){
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .arrivals-grid, .t-grid{ grid-template-columns: repeat(2,1fr); }
  .trust-grid{ grid-template-columns: repeat(2,1fr); gap: 30px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px){
  .hero-grid, .about-grid, .ingredients-grid, .sp-grid{
    grid-template-columns: 1fr;
  }
  .hero-visual{ order:-1; margin-bottom: 20px; }
  .about-img-float{ width:40%; right:0; }
  .nl-box{ flex-direction:column; align-items:flex-start; }
  .nl-form{ max-width:100%; }
}

@media (max-width: 760px){
  .main-nav{
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 340px;
    background: var(--cream);
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    padding: 100px 36px 40px;
    gap: 26px;
    transition: right .45s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,.15);
    z-index: 99;
  }
  .main-nav.open{ right:0; }
  .main-nav a{ font-size:16px; }
  .hamburger{ display:flex; }
  .nav-actions{ gap:14px; }
  .hero{ padding-top: 40px; }
  .hero-cta{ gap:22px; }
  .hero-badge{ padding: 12px 14px; }
  .hero-badge.badge-top{ left:0; top:2%; }
  .hero-badge.badge-bottom{ right:0; bottom:2%; }
  .about, .ingredients, .arrivals, .products, .social-proof, .testimonials, .promo, .newsletter{ padding: 70px 0; }
  .product-grid{ grid-template-columns: repeat(2,1fr); gap:16px; }
  .arrivals-grid, .t-grid{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: 1fr 1fr; }
  .trust-item{ flex-direction:column; text-align:center; gap:8px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .nl-box{ padding: 44px 28px; }
  .container{ padding: 0 20px; }
  .head-row{ flex-direction:column; align-items:flex-start; gap:16px; }
}

@media (max-width: 480px){
  .product-grid{ grid-template-columns: 1fr; }
  .hero-copy p{ max-width: 100%; }
  .about-img-float{ display:none; }
}
