/* ================================================
   PETALS BABY CARE — COMMON CSS
   Shared across all pages
================================================ */

@font-face {
  font-family: 'OneLittleFont';
  src: url('fonts/OneLittleFont-Regular.woff') format('woff'),
       url('fonts/OneLittleFont-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@media (max-width: 768px) {
  .nav-icons a {
    width: 38px;
    height: 38px;
  }
  .nav-icons a i { font-size: 1.25rem; }
  .nav-icons { gap: 2px; }
  .nav-mobile-drawer { z-index: 1002; }
}
:root {
  --purple:       #7657e3;
  --purple-dark:  #5e3fd3;
  --purple-mid:   #6b50d9;
  --purple-light: #9b7ef8;
  --yellow:       #fbf78f;
  --yellow-gold:  #f5e94a;
  --white:        #ffffff;
  --off-white:    #f4f0ff;
  --text-dark:    #1a1a2e;
  --text-gray:    #666688;
  --shadow-sm:    0 4px 15px rgba(118,87,227,.10);
  --shadow-md:    0 8px 30px rgba(118,87,227,.18);
  --shadow-lg:    0 20px 60px rgba(118,87,227,.22);
  --radius:       16px;
  --radius-lg:    24px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4,
.logo-name, .footer-badge-name,
.step-title, .step-num,
.section-title, .testimonial-heading,
.product-name, .footer-col-title,
.about-heading, .promise-title,
.team-title, .founder-title,
.vision-title, .sustain-title {
  font-family: 'OneLittleFont', 'Baloo 2', cursive;
}

/* ================================================
   SCROLL REVEAL
================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-left.visible { opacity:1; transform:translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ================================================
   ANNOUNCEMENT BAR
================================================ */
.announce-bar {
  background: linear-gradient(90deg, #7657e3 0%, #5e3fd3 100%);
  padding: 7px 0;
  font-size: 1rem;
  color: #fff;
  position: relative;
  z-index: 1001;
  width: 100%;
  box-sizing: border-box;
}

/* THIS WAS MISSING — caused the inconsistency across pages */
.announce-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.announce-left,
.announce-right {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  white-space: nowrap;
  color: #fff !important;
  flex-shrink: 0;
}
.announce-left i, .announce-right i {
  font-size: 1rem;
  opacity: 1;
  color: #fff;
}

/* single definition — duplicate removed */
.announce-center {
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff !important;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 12px;
}

/* ================================================
   NAVBAR
================================================ */
/* Add this to common.css */
.announce-bar {
  position: sticky;
  top: 0;
  z-index: 1001;  /* above navbar */
}

.navbar {
  position: sticky;
  top: 37px;  /* height of announce bar */
  z-index: 1000;
}

@media (max-width: 900px) {
  .navbar {
    top: 52px;  /* announce bar is taller on mobile (wraps to 2 lines) */
  }
}

@media (max-width: 480px) {
  .navbar {
    top: 44px;
  }
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid rgba(118,87,227,.10);
  padding: 8px 0;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(118,87,227,.14); }

.nav-inner {
  max-width: 1247px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid rgba(118,87,227,.18);
  border-radius: 10px;
  padding: 5px 12px 5px 8px;
  box-shadow: 0 2px 10px rgba(118,87,227,.10);
}
.logo-star { color: #f5c500; font-size: 1.1rem; }
.logo-texts { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: .2px;
}
.logo-sub { font-size: .6rem; color: #aaa; font-weight: 600; letter-spacing:.3px; }

/* Nav links — Poppins font */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #7657e3;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: #000; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--purple);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav icons — BIGGER */
.nav-icons {
  margin-right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-icons a {
  color: #7657e3;
  font-size: 1.55rem;             /* bigger icons */
  text-decoration: none;
  transition: transform var(--transition), color var(--transition);
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.nav-icons a:hover { transform: scale(1.18); color: var(--purple); background: rgba(118,87,227,.06); }
.nav-icons a i,
.nav-icons a .fa,
.nav-icons a .fas,
.nav-icons a .far {
  font-size: 1.55rem;
}

/* Cart badge: GREEN circle + WHITE numbers */
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: #16a34a !important;   /* green */
  color: #fff !important;
  font-size: .62rem;
  font-weight: 900;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.20);
  line-height: 1;
}



/* ================================================
   SECTION COMMONS
================================================ */
section { position: relative; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 800;
}
.section-subtitle {
  font-size: .95rem;
  color: var(--text-gray);
  margin-top: 10px;
  line-height: 1.7;
  font-family: 'Nunito', sans-serif;
}
.highlight {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-gold {
  background: linear-gradient(135deg, #f5c500 0%, #e8a800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-white {
    font-family: 'OneLittleFont';
  background: linear-gradient(135deg, #f5e94a 0%, #fdb913 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   FOOTER - IMPROVED WITH GLOWING WHITE EFFECTS
================================================ */
.footer {
  background: linear-gradient(160deg, #7657e3 0%, #5e3fd3 100%);
  color: rgba(255,255,255,.88);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

/* Bright glowing white circle in background - top right */
.footer::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, rgba(255,255,255,.05) 40%, transparent 70%);
  top: -120px; right: -100px;
  box-shadow: 0 0 80px 30px rgba(255,255,255,.12);
  filter: blur(40px);
  z-index: 1;
}

/* Additional bright glow element - bottom left */
.footer::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 60%);
  bottom: 100px; left: -80px;
  box-shadow: 0 0 60px 20px rgba(255,255,255,.08);
  filter: blur(35px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
  z-index: 2;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 0px 0px 0px 0px;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.footer-logo-badge::before {
  content: '';
  position: absolute;
  left: -16px; top: -8px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff6eb4 0%, transparent 70%);
  opacity: .80;
  pointer-events: none;
}
.footer-logo-badge::after {
  content: '';
  position: absolute;
  right: -14px; bottom: -8px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, #00d4c8 0%, transparent 70%);
  opacity: .75;
  pointer-events: none;
}
.footer-badge-icon { font-size: 1.5rem; }
.footer-badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-badge-name { font-size: 1.1rem; color: var(--purple); font-weight: 800; }
.footer-badge-sub  { font-size: .68rem; color: #999; letter-spacing:.3px; }

.footer-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  line-height: 1.72;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  max-width: 240px;
}

/* ── Subscribe box: improved styling ── */
.footer-subscribe {
  display: flex;
  max-width: 260px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.28);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: 0 0 20px rgba(255,255,255,.1);
}
.footer-subscribe:focus-within {
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,.12), 0 0 20px rgba(255,255,255,.2);
}
.footer-subscribe input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  font-size: .9rem;
  outline: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  min-width: 0;
}
.footer-subscribe input::placeholder {
  color: rgba(255,255,255,.55);
  font-family: 'Nunito', sans-serif;
}
.btn-subscribe {
  background: linear-gradient(135deg, #fbf78f 0%, #f5c500 100%);
  color: var(--purple);
  border: none;
  padding: 10px 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(251,247,143,.3);
}
.btn-subscribe:hover { 
  transform: scale(1.04); 
  box-shadow: 0 4px 18px rgba(245,197,0,.5); 
}

.footer-col-title {
  font-family: 'OneLittleFont';
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .3px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 25px; }
.footer-links li { display: flex; align-items: center; gap: 8px; }
.footer-links li::before { content: '•'; color: rgba(255,255,255,.45); font-size:.9rem; }
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,.82);
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color .3s, padding-left .3s;
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

/* Footer contact info — sans-serif, readable */
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.5;
  position: relative;
  z-index: 3;
}
.footer-logo-img { background: transparent; }

/* Contact icon wrap — bright white glow effect */
.contact-icon-wrap {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .76rem;
  margin-top: 1px;
  position: relative;
  transition: all .3s ease;
  border: 1.5px solid rgba(255,255,255,.4);
  color: #ffffff;
  /* Bright white glow */
  box-shadow: 
    0 0 8px 1px rgba(255,255,255,.5),
    0 0 16px 3px rgba(255,255,255,.25),
    inset 0 0 8px rgba(255,255,255,.2);
}

.contact-icon-wrap.phone { background: rgba(255,255,255,.15); }
.contact-icon-wrap.email { background: rgba(255,255,255,.15); }
.contact-icon-wrap.map   { background: rgba(255,255,255,.15); }

.contact-icon-wrap:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 
    0 0 12px 2px rgba(255,255,255,.7),
    0 0 24px 6px rgba(255,255,255,.4),
    inset 0 0 12px rgba(255,255,255,.3);
}

/* Icon text glow */
.contact-icon-wrap i {
  text-shadow: 0 0 8px rgba(255,255,255,.4), 0 0 4px rgba(255,255,255,.2);
  filter: drop-shadow(0 0 2px rgba(255,255,255,.3));
}

/* Footer social icons — formal white with bright glow effect */
.footer-socials { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; position: relative; z-index: 3; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  color: #ffffff;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  border: 2px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  /* Bright white glowing effect */
  box-shadow: 
    0 0 10px 2px rgba(255,255,255,.6),
    0 0 20px 5px rgba(255,255,255,.3),
    0 0 30px 10px rgba(255,255,255,.15),
    inset 0 0 12px rgba(255,255,255,.2);
}

/* Formal background colors — subtle, professional (all same) */
.footer-social.fb { background: rgba(255,255,255,.12); }
.footer-social.ig { background: rgba(255,255,255,.12); }
.footer-social.tw { background: rgba(255,255,255,.12); }
.footer-social.yt { background: rgba(255,255,255,.12); }
.footer-social.wa { background: rgba(255,255,255,.12); }

.footer-social:hover {
  transform: translateY(-6px) scale(1.2);
  border-color: #ffffff;
  background: rgba(255,255,255,.22);
  box-shadow: 
    0 0 14px 3px rgba(255,255,255,.85),
    0 0 28px 8px rgba(255,255,255,.5),
    0 0 40px 15px rgba(255,255,255,.25),
    inset 0 0 16px rgba(255,255,255,.3);
}

/* Icon text glow */
.footer-social i {
  text-shadow: 
    0 0 10px rgba(255,255,255,.5),
    0 0 6px rgba(255,255,255,.3);
  filter: drop-shadow(0 0 3px rgba(255,255,255,.4));
}

.footer-bottom {
  background: #7657e3;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 10px 0;
  position: relative;
  z-index: 2;
}
.footer-copy {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.60);
  margin: 0;
  padding: 0 16px;
}
.footer-copy span { color: rgba(255,255,255,.88); font-weight: 700; }

/* ================================================
   COMMON WAVE UTILITY
================================================ */
.wave-divider { width:100%; line-height:0; }
.wave-divider svg { display:block; width:100%; }

/* ================================================
   PAGE HERO (inner pages)
================================================ */
.page-hero {
  position: relative;
  height: 441px;
  overflow: hidden;
  background: linear-gradient(135deg, #ddd0ff 0%, #c8e0ff 100%);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(60,30,160,.42) 0%,
    rgba(80,50,190,.18) 50%,
    transparent 75%
  );
  z-index: 1;
}
.page-hero-content {
  position: absolute;
  bottom: 60px;
  left: 6%;
  z-index: 2;
}
.page-hero-title {
  font-family: 'OneLittleFont', 'Nunito', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,.22);
  animation: heroSlideIn .85s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroSlideIn {
  from { opacity:0; transform:translateX(-40px); }
  to   { opacity:1; transform:translateX(0); }
}
.page-hero-waves {
  position: absolute;
  bottom: -2px; left:0; right:0;
  z-index: 3;
  line-height: 0;
}
.page-hero-waves svg { display:block; width:100%; }

/* ================================================
   PRODUCT CARD BUTTONS
================================================ */
.product-btn-wrap {
  display: flex;
  gap: 8px;
  width: calc(100% - 20px);
  margin: 0 10px;
}

/* Add to Cart: purple bg, YELLOW text */
.btn-cart {
  flex: 1;
  background: linear-gradient(135deg, #7657e3 0%, #9b7ef8 100%);
  color: #fef987 !important;
  border: none;
  padding: 9px 10px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: .2px;
}
.btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(118,87,227,.45);
}

/* Buy Now: yellow bg, purple text */
.btn-buynow {
  flex: 1;
  background: #fbf78f;
  color: #7657e3;
  border: none;
  padding: 9px 10px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-buynow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(251,247,143,.6);
}
/* ≤ 900px tablet — hide contacts, keep promo */
@media (max-width: 900px) {
  .announce-left,
  .announce-right { display: none; }
  .announce-inner { justify-content: center; padding: 0 16px; }
  .announce-center {
    white-space: normal;
    text-overflow: clip;
    font-size: .88rem !important;
    line-height: 1.4;
    padding: 0;
  }
}

/* inside your existing ≤ 768px block, REMOVE the announce rules and keep the rest */

/* ≤ 480px */
@media (max-width: 480px) {
  .announce-bar { padding: 6px 0; }
  .announce-center {
    font-size: .72rem !important;
    letter-spacing: .1px;
    padding: 0 8px;
  }
  /* ... rest of your 480px rules unchanged ... */
}
/* ================================================
   RESPONSIVE — TABLET  (≤ 900px)
================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-subscribe { max-width: 100%; }
  .nav-links { gap: 16px; }
}

/* ================================================
   RESPONSIVE — MOBILE  (≤ 768px)
================================================ */
@media (max-width: 768px) {
  /* Announcement bar */
  .announce-left,
  .announce-right { display: none; }
  .announce-inner {
    justify-content: center;
    padding: 0 12px;
  }
  .announce-center {
    font-size: .82rem !important;
    text-align: center;
    width: 100%;
    white-space: normal;
    line-height: 1.4;
  }

  /* Navbar */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-icons { gap: 4px; }
  .nav-inner { padding: 0 22px; }

  body.nav-open { overflow: hidden; }

  .container { padding: 0 16px; }
  .section-header { margin-bottom: 32px; }

  .footer { padding: 40px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-tagline { max-width: 100%; }
  .footer-subscribe { max-width: 100%; }

  .page-hero { height: 240px; }
  .page-hero-content { bottom: 48px; left: 5%; }
  .page-hero-title { font-size: 1.75rem; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
================================================ */
@media (max-width: 480px) {
  .announce-bar { padding: 6px 0; }
  .announce-center {
    font-size: .72rem !important;
    letter-spacing: .1px;
    white-space: normal;
    line-height: 1.4;
    padding: 0 8px;
  }

  .logo-name { font-size: .95rem; }
  .logo-sub { font-size: .55rem; }
  .logo-badge { padding: 4px 10px 4px 6px; }
  .logo-star { font-size: .95rem; }

  .section-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .section-subtitle { font-size: .88rem; }

  .page-hero { height: 132px; }
  .page-hero-content { bottom: 40px; }
  .page-hero-title { font-size: 1.45rem; }

  /* Footer subscribe — stack vertically */
  .footer-subscribe {
    flex-direction: column;
    max-width: 100%;
    border-radius: 16px;
    gap: 0;
  }
  .footer-subscribe input {
    border-radius: 16px 16px 0 0;
    padding: 11px 16px;
  }
  .btn-subscribe {
    border-radius: 0 0 16px 16px;
    padding: 11px 18px;
    text-align: center;
  }

  .footer-social { width: 38px; height: 38px; font-size: .9rem; }
  .footer-copy { font-size: .74rem; }
  .btn-cart { width: 100%; justify-content: center; }
}

/* ================================================
   TOUCH DEVICE IMPROVEMENTS
================================================ */
@media (hover: none) and (pointer: coarse) {
  .nav-links a::after { display: none; }
  .nav-icons a {
    min-width: 44px;
    min-height: 44px;
  }
  .footer-links a { padding: 4px 0; display: inline-block; }
  .footer-social { width: 38px; height: 38px; }
  .btn-subscribe:hover { transform: none; box-shadow: 0 2px 10px rgba(251,247,143,.3); }
  .footer-social:hover { transform: none; box-shadow: 0 0 10px 2px rgba(255,255,255,.6), 0 0 20px 5px rgba(255,255,255,.3); }
  .btn-cart:hover { transform: none; box-shadow: none; }
  .contact-icon-wrap:hover { transform: none; }
}
