/* ============================================================
   CARE PLUS — RESPONSIVE HOMEPAGE
   Breakpoints:
     Desktop  : 1180px+
     Tablet   : 768px – 1179px
     Mobile   : 480px – 767px
     Small    : < 480px
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── CSS VARIABLES ── */
:root {
  --primary: #1A8C6E;
  --primary-light: #E6F5F1;
  --primary-mid: #2DB892;
  --accent: #FF6B35;
  --accent-light:  #E4F7F2;
  --accent-light: #FFF0EB;
  --blue: #3A7BD5;
  --blue-light: #EBF3FF;
  --warm:          #F6A650;
  --warm-light:    #FEF3E6;
  --bg:            #F7F9FC;
  --bg-white:      #FFFFFF;
  --bg-section:    #EEF4FA;
  --text-dark:     #1A2332;
  --text-mid:      #4A5568;
  --text-light:    #7A8A9A;
  --border:        #DDE6EF;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --shadow-sm:     0 2px 8px rgba(42,127,191,0.08);
  --shadow-md:     0 6px 24px rgba(42,127,191,0.12);
  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  /* Section padding (overridden at breakpoints) */
  --section-py: 64px;
}

/* ── BASE ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'DM Sans', serif; font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text-mid); }

/* ── CONTAINER ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  /* padding: 0 var(--space-md); */
}

/* ── UTILITY ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 14px; border-radius: 50px; text-transform: uppercase;
}
.badge.green { background: var(--accent-light); color: var(--accent); }

.btn-primary {
  background: var(--primary); color: #fff;
  border: none; padding: 13px 28px;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  display: inline-block; text-align: center;
}
.btn-primary:hover { background: #1d6fa8; transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary); padding: 11px 26px;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  transition: all 0.2s; display: inline-block; text-align: center;
}
.btn-outline:hover { background: var(--primary-light); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { max-width: 520px; margin: 12px auto 0; font-size: 15px; }
.section-header h2 { margin-top: 12px; }


/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  font-size: 12.5px;
  text-align: center;
  padding: 9px var(--space-md);
  letter-spacing: 0.2px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: var(--space-md);
}

/* Logo */
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; color: var(--primary);
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.logo span { color: var(--accent); }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center;
  gap: 28px; list-style: none;
}
.nav-links a {
  color: var(--text-mid); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

/* ── sub-menu SUBMENU ── */
.nav-links li { position: relative; }

/* Arrow indicator on parent */
.nav-links .menu-item-has-children > a {
  display: flex; align-items: center; gap: 5px;
}
.nav-links .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--text-mid);
  border-bottom: 1.5px solid var(--text-mid);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s, border-color 0.2s;
}
.nav-links .menu-item-has-children:hover > a::after,
.nav-links .menu-item-has-children > a:focus::after {
  transform: rotate(-135deg);
  margin-top: 3px;
  border-color: var(--primary);
}

/* sub-menu panel */
.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px 0;
  z-index: 999;
  /* Smooth reveal */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}
/* Small arrow pointer at top of sub-menu */
.sub-menu::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--bg-white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
/* Show on hover */
.nav-links .menu-item-has-children:hover .sub-menu,
.nav-links .menu-item-has-children:focus-within .sub-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* sub-menu items */
.sub-menu li { list-style: none; }
.sub-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  color: var(--text-mid); font-size: 13.5px; font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
  white-space: nowrap;
}
.sub-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.sub-menu .dd-icon {
  font-size: 17px; width: 24px; text-align: center; flex-shrink: 0;
}
.sub-menu .dd-text { flex: 1; }
.sub-menu .dd-text small {
  display: block; font-size: 11px;
  color: var(--text-light); margin-top: 1px; font-weight: 400;
}
/* Divider inside sub-menu */
.sub-menu .dd-divider {
  height: 1px; background: var(--border);
  margin: 6px 12px;
}
/* Wide sub-menu (mega style for Products) */
.sub-menu.wide {
  min-width: 480px;
  padding: 16px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}
.nav-links .menu-item-has-children:hover .sub-menu.wide,
.nav-links .menu-item-has-children:focus-within .sub-menu.wide {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sub-menu.wide .dd-col-title {
  grid-column: 1 / -1;
  font-size: 11px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.6px;
  padding: 4px 6px 8px; border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.sub-menu.wide a {
  border-radius: var(--radius-sm);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: none; display: flex; align-items: center;
  justify-content: center; color: var(--text-mid); font-size: 16px;
  transition: all 0.2s;
}
.icon-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}
.btn-signin {
  background: var(--primary); color: #fff;
  border: none; padding: 10px 20px;
  border-radius: 50px; font-size: 13px; font-weight: 600;
  transition: background 0.2s; white-space: nowrap;
}
.btn-signin:hover { background: #1d6fa8; }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: none; align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--text-mid); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 300;
}
.mobile-nav-overlay {
  position: absolute; inset: 0;
  background: rgba(15,30,48,0.5);
}
.mobile-nav-drawer {
  position: absolute; top: 0; left: 0;
  width: min(300px, 85vw); height: 100%;
  background: var(--bg-white);
  padding: 24px;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { display: block; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 28px;
}
.mobile-nav-close {
  width: 34px; height: 34px;
  border: 1px solid var(--border); border-radius: 8px;
  background: none; font-size: 18px; color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a {
  display: block; padding: 14px 4px;
  color: var(--text-dark); font-size: 15px; font-weight: 500;
}
.mobile-nav-links a:hover { color: var(--primary); }

/* Mobile submenu accordion */
.mobile-nav-links .menu-item-has-children > a {
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav-links .menu-item-has-children > a .mob-arrow {
  font-size: 12px; transition: transform 0.25s; color: var(--text-light);
  flex-shrink: 0;
}
.mobile-nav-links .menu-item-has-children.open > a .mob-arrow {
  transform: rotate(180deg);
}
.mob-dropdown {
  display: none;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}
.mobile-nav-links .menu-item-has-children.open .mob-dropdown { display: block; }
.mob-dropdown li { border-bottom: 1px solid var(--border); }
.mob-dropdown li:last-child { border-bottom: none; }
.mob-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px 11px 24px;
  font-size: 13.5px; color: var(--text-mid); font-weight: 500;
}
.mob-dropdown a:hover { color: var(--primary); background: var(--primary-light); }
.mob-dropdown .dd-icon { font-size: 16px; }

.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-cta .btn-primary,
.mobile-nav-cta .btn-outline { display: block; text-align: center; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #EAF4FC 0%, #F0F8F4 100%);
  padding: 80px 0 0;
  overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,127,191,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-bottom: 60px;
}

/* Hero text */
.hero-text { position: relative; z-index: 1; }
.hero-text h1 { color: var(--text-dark); margin: 16px 0 20px; }
.hero-text h1 em { color: var(--primary); font-style: italic; }
.hero-text > p { font-size: 15px; max-width: 420px; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 28px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; color: var(--primary);
}
.hero-stat .lbl { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: flex-end;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-card-main {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px; 
  position: relative; z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.product-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #EAF4FC, #E4F7F2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; margin-bottom: 16px;
}
.hero-card-main h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 15px; color: var(--text-dark);
}
.hero-card-main .price {
  color: var(--primary); font-weight: 700;
  font-size: 18px; margin: 6px 0 12px;
}
.hero-card-main .btn-primary { width: 100%; padding: 11px; }

.floating-card {
  position: absolute;
  background: var(--bg-white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: var(--text-dark);
}
.floating-card.one {
  top: 20px; left: -20px;
  display: flex; align-items: center; gap: 8px; z-index: 3;
}
.floating-card.two {
  bottom: 80px; right: -30px;
  text-align: center; z-index: 3;
}
.floating-card .icon { font-size: 20px; }
.fc-muted { font-size: 11px; color: var(--text-light); font-weight: 400; }


/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--text-mid);
}
.trust-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.trust-item strong { color: var(--text-dark); display: block; }


/* ============================================================
   CATEGORIES
   ============================================================ */
.categories { padding: var(--section-py) 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 16px; text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: block;
}
.cat-card:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.cat-icon { font-size: 36px; margin-bottom: 10px; display: block; }
.cat-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 13px;
  color: var(--text-dark); margin-bottom: 4px;
}
.cat-card p { font-size: 11px; color: var(--text-light); }


/* ============================================================
   TOP SELLING PRODUCTS
   ============================================================ */
.products-section { padding: var(--section-py) 0; background: var(--bg-section); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 58px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  position: relative;
}
.product-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--warm); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.product-tag.new { background: var(--accent); }
.product-body { padding: 16px; }
.product-brand {
  font-size: 11px; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.product-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--text-dark); margin-bottom: 6px;
}
.product-stars { color: #F6A650; font-size: 12px; margin-bottom: 8px; }
.product-stars span { color: var(--text-light); font-size: 11px; margin-left: 4px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { color: var(--primary); font-weight: 700; font-size: 16px; }
.product-price .old {
  color: var(--text-light); font-weight: 400;
  font-size: 12px; text-decoration: line-through; margin-left: 6px;
}
.add-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  border: none; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.add-btn:hover { background: #1d6fa8; transform: scale(1.1); }


/* ============================================================
   BRANDS
   ============================================================ */
.brands-section { padding: var(--section-py) 0; background: var(--bg-white); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px; align-items: center;
}
.brands-grid.row2 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 700px;
  margin: 16px auto 0;
}
.brand-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 12px; text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-card:hover { border-color: var(--primary-mid); box-shadow: var(--shadow-sm); }
.brand-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; letter-spacing: 1px;
}
.brand-country {
  font-size: 10px; color: var(--text-light);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}


/* ============================================================
   5-STAR RATED
   ============================================================ */
.rated-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #EAF4FC 0%, #EAF7F2 100%);
}
.rated-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.big-stars {
  font-size: 36px; color: #F6A650;
  letter-spacing: 2px; margin-bottom: 16px; display: block;
}
.rating-number {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem; color: var(--primary); line-height: 1;
}
.rating-sub { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.testimonials-stack { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 18px; border: 1px solid var(--border);
}
.tc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0;
}
.tc-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.tc-stars { color: #F6A650; font-size: 11px; }
.tc-text { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

.rated-text .section-header { text-align: left; }
.rated-text .section-header p { margin: 12px 0 0; text-align: left; }
.stat-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.stat-pill {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 20px; text-align: center;
  min-width: 110px;
}
.stat-pill .sp-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--primary);
}
.stat-pill .sp-lbl { font-size: 11px; color: var(--text-light); margin-top: 2px; }


/* ============================================================
   BLOG
   ============================================================ */
.blog-section { padding: var(--section-py) 0; background: var(--bg-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
  display: block; color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; position: relative;
}
.blog-thumb.b1 { background: linear-gradient(135deg, #EAF4FC, #C8E4F6); }
.blog-thumb.b2 { background: linear-gradient(135deg, #E4F7F2, #B8EDDF); }
.blog-thumb.b3 { background: linear-gradient(135deg, #FEF3E6, #FDDDB8); }
.blog-cat {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--bg-white); color: var(--primary);
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 4px 10px; border-radius: 50px;
}
.blog-body { padding: 18px; }
.blog-meta {
  font-size: 11px; color: var(--text-light);
  margin-bottom: 8px; display: flex; gap: 12px; flex-wrap: wrap;
}
.blog-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  color: var(--text-dark); margin-bottom: 8px; line-height: 1.4;
}
.blog-excerpt { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; }
.read-more {
  font-size: 13px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 4px;
}
.read-more::after { content: '→'; }


/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--primary);
  padding: var(--section-py) 0;
  text-align: center;
}
.newsletter h2 { color: #fff; margin-bottom: 12px; }
.newsletter > .container > p {
  color: rgba(255,255,255,0.75);
  max-width: 500px; margin: 0 auto 28px; font-size: 15px;
}
.email-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.email-form input {
  flex: 1; padding: 13px 18px; border: none;
  border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; outline: none; color: var(--text-dark);
  min-width: 0;
}
.email-form button {
  background: var(--warm); color: #fff;
  border: none; padding: 13px 24px;
  border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.email-form button:hover { background: #e08e36; }


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0F1E30;
  color: rgba(255,255,255,0.65);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p {
  font-size: 13px; margin: 16px 0 20px;
  max-width: 240px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.social-btn:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07); color: #fff;
}
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 13px; color: #fff;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); font-size: 13px; transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact { margin-top: 20px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 12px;
}
.payment-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 5px 10px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.65);
}


/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed; bottom: 20px; right: 5px; z-index: 999;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }


/* ============================================================
   RESPONSIVE — TABLET  (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 52px; }

  /* Nav: hide sign-in text button, keep icons */
  .btn-signin { display: none; }
  .hamburger { display: flex; }
  .nav-links  { display: none; }
  .nav-actions .icon-btn { display: none; }

  /* Hero: stack */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px; padding-bottom: 40px;
  }
  .hero-text > p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-visual  { display: none; } /* hide floating card visual on tablet */

  /* Categories: 4→2 cols */
  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Products: 4→2 cols */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Brands: 6→3 cols */
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid.row2 { grid-template-columns: repeat(3, 1fr); max-width: 100%; }

  /* Rated: side-by-side but tighter */
  .rated-inner { gap: 40px; }

  /* Blog: 3→2 cols */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer: 4→2 cols */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}


/* ============================================================
   RESPONSIVE — MOBILE  (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --section-py: 40px; }

  /* Topbar: shorter */
  .topbar { font-size: 11.5px; padding: 8px 16px; }
  .topbar .hide-mobile { display: none; }

  /* Nav height */
  .nav-inner { height: 60px; }
  .logo { font-size: 1.4rem; }
  .logo-icon { width: 32px; height: 32px; font-size: 16px; }

  /* Hero */
  .hero { padding: 48px 0 0; }
  .hero-inner { gap: 32px; padding-bottom: 32px; }
  .hero-text h1 { margin: 12px 0 16px; }
  .hero-stats { gap: 20px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }

  /* Categories: 2 cols */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card  { padding: 16px 12px; }
  .cat-icon  { font-size: 28px; margin-bottom: 8px; }
  .cat-card h4 { font-size: 12px; }

  /* Products: 2→1 cols (NOTE: keep 2 on mobile if cards are compact) */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img   { height: 130px; font-size: 44px; }
  .product-body  { padding: 12px; }
  .product-name  { font-size: 13px; }
  .product-price { font-size: 14px; }

  /* Brands: 3→2 cols */
  .brands-grid     { grid-template-columns: repeat(2, 1fr); }
  .brands-grid.row2{ grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .brand-card      { padding: 14px 10px; }

  /* Rated: stack */
  .rated-inner { grid-template-columns: 1fr; gap: 36px; }
  .rating-number { font-size: 4rem; }
  .stat-pills { justify-content: center; }
  .rated-text .section-header { text-align: center; }
  .rated-text .section-header p { text-align: center; margin-left: auto; margin-right: auto; }

  /* Blog: 2→1 col */
  .blog-grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .email-form { flex-direction: column; }
  .email-form input  { border-radius: 50px; }
  .email-form button { border-radius: 50px; width: 100%; }

  /* Footer: 2→1 col */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Trust strip: scrollable */
  .trust-strip-inner {
    flex-wrap: nowrap; overflow-x: auto;
    padding-bottom: 4px; gap: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-strip-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE  (max-width: 479px)
   ============================================================ */
@media (max-width: 479px) {
  :root { --section-py: 32px; }

  .container { padding: 0 16px; }

  /* Products: 1 col on very small screens */
  .products-grid { grid-template-columns: 1fr; }

  /* Hero stats: 2x2 grid */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; text-align: center;
  }
  .hero-stat .num { font-size: 1.4rem; }

  /* Cat: 2 cols — keep */
  .cat-card { padding: 14px 10px; }

  /* Brands: 2 cols */
  .brand-card { padding: 12px 8px; }
  .brand-logo-text { font-size: 0.85rem; }

  /* Stat pills: wrap nicely */
  .stat-pills { gap: 8px; }
  .stat-pill  { min-width: auto; padding: 12px 14px; flex: 1 1 calc(50% - 4px); }

  /* Float WA: smaller */
  .float-wa { width: 48px; height: 48px; font-size: 22px; bottom: 16px; right: 5px; }
}