/* ==========================================================
   site.css — Professional Healthcare Store
   Palette: Ink #0f172a | Green #16a34a | Warm white #f8fafc
   Type: Plus Jakarta Sans (display 800) + Inter (body)
========================================================== */

/* ── Reset & tokens ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pgreen: #00a6d6;
  --secondsreen-700: #00fefc;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --ink: #0f172a;
  --ink-700: #1e293b;
  --ink-500: #334155;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --border: #e2e8f0;
  --surface: #f8fafc;
  --white: #ffffff;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.07);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none !important;
}

/* ── Topbar ───────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  letter-spacing: 0.01em;
}
.topbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.topbar a:hover {
  color: #fff;
}
.topbar i {
  color: var(--pgreen);
  margin-right: 0.3rem;
  font-size: 0.85rem;
}
.topbar-divider {
  /* color: rgba(255, 255, 255, 0.2); */
  color: white;
}

/* ── Navbar ───────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand img {
  height: 52px;
  width: auto;
}
.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.1;
}
.brand-tag {
  font-size: 0.72rem;
  color: var(--pgreen);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-500);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--pgreen);
  background: var(--green-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Search */
.search-wrap {
  display: flex;
  align-items: center;
}
.search-wrap form {
  display: flex;
}
.search-input {
  width: 220px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  color: var(--ink);
  transition: border-color 0.2s;
}
.search-input:focus {
  border-color: var(--green);
}
.search-btn {
  height: 40px;
  width: 42px;
  border: 1.5px solid var(--border);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.search-btn:hover {
  background: var(--green-50);
  color: var(--green);
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 42px;
  padding: 0 1.1rem;
  background: var(--pgreen);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.cart-btn:hover {
  background: var(--secondsreen-700);
  transform: translateY(-1px);
}
.cart-btn i {
  font-size: 1.1rem;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ink);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(22, 163, 74, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(22, 163, 74, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: var(--pgreen);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow i {
  font-size: 0.9rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  color: #4ade80;
  font-style: normal;
  position: relative;
}
.hero-desc {
  font-size: 1.08rem;
  color: #0f172a;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--pgreen);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(22, 163, 74, 0.4);
}
.btn-primary-lg:hover {
  background: var(--secondsreen-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.45);
}
.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.btn-ghost-lg:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.stat-val {
  font-size: 1.9rem;
  font-weight: 800;
  color: black;
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-val sup {
  color: #4ade80;
  font-size: 1rem;
}
.stat-lbl {
  font-size: 0.75rem;
  color: green;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.3rem;
}

/* Hero image column */
.hero-img-col {
  align-self: flex-end;
  position: relative;
}
.hero-img-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  opacity: 0.9;
}
.hero-img-badge {
  position: absolute;
  top: 1.25rem;
  left: -1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 165px;
}
.badge-icon {
  width: 36px;
  height: 36px;
  background: var(--green-100);
  color: var(--green);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.badge-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.badge-sub {
  font-size: 0.68rem;
  color: var(--muted);
}

/* ── Trust bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* divide-x: 1px solid var(--border); */
}
.trust-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--border);
}
.trust-cell:last-child {
  border-right: none;
}
.trust-ico {
  width: 44px;
  height: 44px;
  background: var(--secondsreen-700);
  border: 1.5px solid var(--green-100);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-label {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-sub {
  font-size: 0.78rem;
  color: var(--pgreen);
  margin-top: 0.1rem;
}

/* ── Section scaffolding ──────────────────────────────────── */
.section {
  padding: 5.5rem 0;
}
.section-sm {
  padding: 3.5rem 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pgreen);
  margin-bottom: 0.6rem;
}
.section-heading {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--pgreen);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.7;
}

/* ── Category pills ───────────────────────────────────────── */
.cat-scroll {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.cat-scroll::-webkit-scrollbar {
  display: none;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-500);
  background: var(--white);
  border: 1.5px solid var(--border);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.cat-pill:hover {
  border-color: var(--green);
  color: var(--pgreen);
  background: var(--green-50);
}
.cat-pill.active {
  background: var(--pgreen);
  border-color: var(--pgreen);
  color: var(--white);
}

/* ── Product cards ────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s;
}
.product-card:hover {
  border-color: var(--pgreen);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.product-thumb {
  aspect-ratio: 4/3;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-thumb img {
  transform: scale(1.05);
}
.no-img-icon {
  font-size: 3rem;
  color: #cbd5e1;
}
.sale-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 99px;
  z-index: 2;
}
.product-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}
.prod-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pgreen);
}
.prod-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-rating {
  font-size: 0.82rem;
  color: #f59e0b;
  font-weight: 600;
}
.prod-rating .reviews {
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.2rem;
}
.price-now {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}
.price-old {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 0.4rem;
}

.btn-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: auto;
}
.btn-add:hover,
.btn-add.added {
  background: var(--pgreen);
}

/* ── About section ────────────────────────────────────────── */
.about-section {
  background: var(--surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.about-years-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--pgreen);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.years-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.years-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.about-content .section-heading {
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.pillar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  transition: border-color 0.2s;
}
.pillar:hover {
  border-color: var(--pgreen);
}
.pillar-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.pillar-body {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.pillar i {
  color: var(--pgreen);
  margin-right: 0.35rem;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  background: var(--ink);
}
.testimonials-section .eyebrow {
  color: var(--pgreen);
}
.testimonials-section .section-heading {
  color: var(--white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background 0.2s, border-color 0.2s;
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(74, 222, 128, 0.3);
}
.testi-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testi-quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  background: var(--pgreen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}
.testi-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── CTA banner ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--pgreen) 0%,
    var(--secondsreen-700) 100%
  );
  padding: 4rem 0;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}
.btn-white-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--white);
  color: var(--green-700);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-white-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  color: var(--secondsreen-700);
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ── Contact section ──────────────────────────────────────── */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-ico {
  width: 44px;
  height: 44px;
  background: var(--secondsreen-700);
  border: 1.5px solid var(--green-100);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-detail-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-detail-val a {
  color: var(--ink);
  transition: color 0.2s;
}
.contact-detail-val a:hover {
  color: var(--pgreen);
}

.contact-form-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-500);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--pgreen);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-send {
  width: 100%;
  padding: 0.85rem;
  background: var(--pgreen);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-send:hover {
  background: var(--secondsreen-700);
  transform: translateY(-1px);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
}
.footer-top {
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3.5rem;
}
.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.1rem;
}
.footer-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.social-row {
  display: flex;
  gap: 0.6rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--pgreen);
  border-color: var(--pgreen);
  color: #fff !important;
  transform: translateY(-2px);
}
.footer-col h6 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.newsletter-form input {
  width: 100%;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter-form input:focus {
  border-color: var(--pgreen);
}
.newsletter-form button {
  height: 42px;
  background: var(--pgreen);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: var(--secondsreen-700);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.83rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.dev-credit {
  color: white;
}
.dev-credit:hover {
  color: var(--pgreen);
}

/* ── Cart Offcanvas ───────────────────────────────────────── */
.offcanvas-title {
  font-weight: 800;
  font-size: 1.1rem;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-thumb-empty {
  width: 56px;
  height: 56px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cart-item-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.cart-item-price {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 0.4rem;
}
.qty-ctrl button {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  transition: background 0.15s;
}
.qty-ctrl button:hover {
  background: var(--green-50);
  color: var(--green);
}
.qty-ctrl span {
  width: 28px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
}
.cart-item-subtotal {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
}

.empty-cart-msg {
  text-align: center;
  padding: 3.5rem 0;
}
.empty-cart-msg i {
  font-size: 3.5rem;
  color: #cbd5e1;
}
.empty-cart-msg p {
  margin-top: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  font-size: 1rem;
}
.empty-cart-msg small {
  color: var(--muted-light);
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}
.form-label-sm {
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-500);
}
.cart-footer input {
  width: 100%;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 0.9rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 0.85rem;
}
.cart-footer input:focus {
  border-color: var(--green);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  margin-bottom: 1rem;
}
.cart-total-label {
  font-size: 0.92rem;
  color: var(--muted);
}
.cart-total-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
}
.btn-wa {
  width: 100%;
  height: 50px;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 0.65rem;
}
.btn-wa:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
}
.btn-clear-cart {
  width: 100%;
  height: 38px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-clear-cart:hover {
  color: #ef4444;
}

.wa-sticky {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

.wa-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}

.wa-bubble:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}

.wa-tooltip {
  position: absolute;
  left: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #111827;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.wa-sticky:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}
/* =========================================
   WHATSAPP BEEP / PULSE ANIMATION
========================================= */

.wa-bubble {
  position: relative;
  animation: whatsappPulse 1.8s infinite;
}
.wa-bubble {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 20px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 1.8s infinite, glowPulse 1.8s infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7),
      0 0 20px rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0),
      0 0 35px rgba(37, 211, 102, 0.8);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 0 20px rgba(37, 211, 102, 0.4);
  }
}

/* Outer ringing circles */
.wa-bubble::before,
.wa-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.6);
  animation: ring 2s linear infinite;
}

.wa-bubble::after {
  animation-delay: 1s;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.08);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Shake icon slightly like incoming message */
.wa-bubble i {
  animation: whatsappShake 2s infinite;
}

@keyframes whatsappShake {
  0%,
  70%,
  100% {
    transform: rotate(0deg);
  }
  74% {
    transform: rotate(-12deg);
  }
  78% {
    transform: rotate(12deg);
  }
  82% {
    transform: rotate(-10deg);
  }
  86% {
    transform: rotate(10deg);
  }
  90% {
    transform: rotate(0deg);
  }
}
/* =========================================
   BACK TO TOP BUTTON (RIGHT)
========================================= */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
  transition: 0.3s ease;
}

.back-to-top:hover {
  color: #fff;
  transform: translateY(-4px);
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Mobile */
@media (max-width: 768px) {
  .wa-sticky {
    left: 15px;
    bottom: 15px;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .wa-bubble {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  .wa-tooltip {
    display: none;
  }
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7);
  }
}

/* ── Toast ────────────────────────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 99px;
  border-left: 3px solid var(--green);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 9999;
  white-space: nowrap;
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Pagination ───────────────────────────────────────────── */
.pagination .page-link {
  color: var(--ink-500);
  border-color: var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm) !important;
  margin: 0 0.2rem;
  min-width: 40px;
  text-align: center;
  padding: 0.5rem 0.75rem;
}
.pagination .page-link:hover {
  background: var(--green-50);
  color: var(--green);
  border-color: var(--green);
}
.pagination .page-item.active .page-link {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.pagination .page-item.disabled .page-link {
  opacity: 0.4;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-img-col {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-cell:nth-child(2) {
    border-right: none;
  }
  .trust-cell:nth-child(3) {
    border-top: 1px solid var(--border);
  }
  .trust-cell:last-child {
    border-top: 1px solid var(--border);
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .search-wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
  .hero-section {
    padding: 3rem 0 0;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-cell {
    border-right: none !important;
    border-top: 1px solid var(--border);
  }
  .trust-cell:first-child {
    border-top: none;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-top {
    padding: 3rem 0 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-pillars {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .wa-sticky {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
@media (max-width: 575px) {
  .hero-ctas {
    flex-direction: column;
  }
  .btn-primary-lg,
  .btn-ghost-lg {
    justify-content: center;
  }
  .cta-section .d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--white);
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--ink);
}
.mobile-nav-links {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-500);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-links a:hover {
  background: var(--green-50);
  color: var(--green);
}
.mobile-search-wrap {
  margin-top: 1.5rem;
}
.mobile-search-wrap input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
}
.mobile-search-wrap input:focus {
  border-color: var(--green);
}
/* ==========================================================
   MOBILE FIXES
   ADD AT VERY END OF site.css
========================================================== */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.container,
.container-fluid {
  max-width: 100%;
}

/* Navbar */
@media (max-width: 991px) {
  .nav-inner {
    justify-content: space-between;
    gap: 0.5rem;
    height: auto;
    min-height: 64px;
    padding: 10px 0;
  }

  .brand {
    max-width: calc(100% - 120px);
  }

  .brand img {
    height: 42px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-tag {
    display: none;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .cart-btn {
    height: 38px;
    padding: 0 0.75rem;
    font-size: 0.85rem;
  }

  .cart-btn span {
    display: none;
  }
}

/* Hero */
@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-lg,
  .btn-ghost-lg {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
  }

  .hero-stats {
    gap: 1rem;
    justify-content: space-between;
  }

  .stat-val {
    font-size: 1.4rem;
  }

  .stat-lbl {
    font-size: 0.7rem;
  }
}

/* Trust section */
@media (max-width: 767px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-cell {
    border-right: none !important;
    padding: 1rem;
  }
}

/* Products */
@media (max-width: 767px) {
  .product-body {
    padding: 0.9rem;
  }

  .prod-name {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .price-now {
    font-size: 1rem;
  }

  .btn-add {
    font-size: 0.85rem;
  }
}

/* About */
@media (max-width: 767px) {
  .about-grid {
    gap: 2rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
@media (max-width: 767px) {
  .testi-card {
    padding: 1.5rem;
  }
}

/* Contact */
@media (max-width: 767px) {
  .contact-grid {
    gap: 2rem;
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* CTA */
@media (max-width: 767px) {
  .cta-section .d-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Footer */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .social-row {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* WhatsApp */
@media (max-width: 767px) {
  .wa-sticky {
    right: 1rem;
    bottom: 1rem;
  }

  .wa-bubble {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .wa-tooltip {
    display: none;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .contact-detail-val {
    font-size: 0.9rem;
  }

  .cart-toast {
    width: calc(100% - 20px);
    text-align: center;
    white-space: normal;
  }
}
