/* ============================================================
   Ambika Chemist - Landing page styles
   ============================================================ */

:root {
  --navy: #123a6b;
  --navy-deep: #0e2d55;
  --navy-soft: #1c4f96;
  --blue: #2f6fc4;
  --blue-tint: #eaf2fc;
  --green: #1faa5a;
  --green-bright: #25d366;
  --text: #12294a;
  --muted: #5d708a;
  --line: #e2ebf6;
  --surface: #ffffff;
  --page: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(18, 58, 107, 0.06);
  --shadow: 0 10px 30px rgba(18, 58, 107, 0.09);
  --shadow-lg: 0 22px 50px rgba(18, 58, 107, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Urbanist", "Plus Jakarta Sans", sans-serif;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Wider track so eight category cards get real width, not eight slivers. */
.container-wide {
  width: min(1400px, calc(100% - 40px));
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Icon defaults: stroke style, with a filled variant for brand glyphs */
.ico {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ico-fill {
  fill: currentColor;
  stroke: none;
}

/* ------------------------- Buttons ------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(18, 58, 107, 0.28);
}

.btn-primary:hover {
  background: var(--navy-deep);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--blue);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 170, 90, 0.3);
}

.btn-block {
  width: 100%;
}

/* ------------------------- Header ------------------------- */

/* Floating pill navbar that sits over the hero. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 14px 0;
  background: transparent;
}

.site-header .container {
  width: min(1420px, calc(100% - 32px));
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 8px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 28px rgba(18, 58, 107, 0.12);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-stuck .header-inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(18, 58, 107, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand-logo {
  width: 34px;
  height: 38px;
  flex: none;
}

.brand-text {
  display: block;
  line-height: 1;
}

.brand-text strong {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.brand-text em {
  display: block;
  margin-top: 2px;
  font-family: "Urbanist", sans-serif;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--navy-soft);
}

.brand-text small {
  display: block;
  margin-top: 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #7b90ab;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  flex: 1 1 auto;
  flex-wrap: nowrap;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #3c536f;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--navy);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  flex: none;
  padding: 11px 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle .ico {
  width: 22px;
  height: 22px;
}

/* ------------------------- Hero slider ------------------------- */

/* Height fills the screen down to the trust bar, but never gets so tall that a
   2:1 banner would need letterboxing above and below it (40.8vw = width / 2.45,
   the widest of the three banners). */
.hero-slider {
  position: relative;
  height: clamp(380px, min(calc(100vh - 84px), 40.8vw), 820px);
  border-bottom: 1px solid #dce8f6;
  overflow: hidden;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  visibility: hidden;
  background: var(--slide-bg);
  /* Kept short so the crossfade completes inside the 3s slide interval. */
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* Sampled from the left edge of each banner so the filled strip beside the
   artwork is indistinguishable from the artwork's own backdrop. */
.slide-medicines {
  --slide-bg: #ecf1fb;
  --slide-scrim: rgba(236, 241, 251, 0.97);
}

.slide-skincare {
  --slide-bg: #eeedf0;
  --slide-scrim: rgba(238, 237, 240, 0.97);
}

.slide-baby {
  --slide-bg: #c0dcf5;
  --slide-scrim: rgba(192, 220, 245, 0.97);
}

/* No banner artwork yet - a soft wash stands in until one is dropped in. */
.slide-women {
  --slide-bg: #f2d9dc;
  --slide-scrim: rgba(242, 217, 220, 0.97);
}

/* slider4 puts its products further left than the other banners, so this slide
   needs a wider wash to keep the headline off them. */
.slide.slide-women::after {
  background: linear-gradient(
    90deg,
    var(--slide-scrim) 0%,
    var(--slide-scrim) 31%,
    rgba(255, 255, 255, 0) 64%
  );
}

/* `contain` so no part of the banner is ever sliced off. Anchoring right keeps
   the products in place; the strip left over on the left is filled by the
   slide's own backdrop colour and sits under the copy, so it never shows. */
.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

/* Covers the join between that filled strip and the artwork, and keeps the
   headline readable. */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slide-scrim) 0%,
    var(--slide-scrim) 26%,
    rgba(255, 255, 255, 0) 58%
  );
}

.slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-copy {
  width: min(46%, 520px);
}

.slide-title {
  font-size: clamp(2.2rem, 4.1vw, 3.5rem);
  line-height: 1.04;
}

.slide-title span {
  display: block;
  font-weight: 700;
}

.slide-title .t-bold {
  font-weight: 800;
}

.slide-title .t-script {
  margin-top: 6px;
  font-family: "Dancing Script", cursive;
  font-size: 0.74em;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--navy-soft);
}

.slide-text {
  max-width: 40ch;
  margin: 18px 0 24px;
  color: #40587a;
  font-size: 0.98rem;
  line-height: 1.7;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Copy animates in each time its slide becomes active. */
.slide.is-active .slide-copy > * {
  animation: slide-rise 0.42s cubic-bezier(0.22, 0.7, 0.3, 1) both;
}

.slide.is-active .eyebrow {
  animation-delay: 0.03s;
}

.slide.is-active .slide-title {
  animation-delay: 0.08s;
}

.slide.is-active .slide-text {
  animation-delay: 0.13s;
}

.slide.is-active .slide-actions {
  animation-delay: 0.18s;
}

@keyframes slide-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- Slider controls ---- */

/* Aligned with the copy column so the dots always land on clean backdrop. */
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  width: min(var(--max), calc(100% - 40px));
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 58, 107, 0.28);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.slider-dots button[aria-selected="true"] {
  width: 26px;
  background: var(--navy);
}

/* ------------------------- Trust bar ------------------------- */

/* The banner can only grow to 40.8vw before it would need letterboxing, so any
   leftover height down to the fold is absorbed here instead of showing as a gap. */
.trust-bar {
  display: flex;
  align-items: center;
  min-height: clamp(84px, calc(100vh - min(100vh - 84px, 40.8vw)), 150px);
  padding: 18px 0;
  background: linear-gradient(180deg, #eef4fc, #e7effa);
  border-bottom: 1px solid #dbe7f5;
}

.trust-bar > .container {
  width: min(var(--max), calc(100% - 40px));
}

.hero-trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 26px;
  border-right: 1px solid rgba(18, 58, 107, 0.16);
}

.hero-trust li:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-trust .ico {
  width: 26px;
  height: 26px;
  color: var(--navy-soft);
  stroke-width: 1.5;
}

.hero-trust span {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #57708f;
  white-space: nowrap;
}

.hero-trust strong {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy);
}

/* ------------------------- Section shell ------------------------- */

.section {
  padding: 44px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.pulse {
  display: block;
  width: clamp(60px, 12vw, 130px);
  height: 18px;
  flex: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0.55;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 18'%3E%3Cg fill='none' stroke='%231c4f96' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9h56l5-6 5 12 5-9 5 5h45'/%3E%3C/g%3E%3Cpath d='M128 5.5 131 9l-3 3.5z' fill='%231c4f96'/%3E%3C/svg%3E");
}

.pulse-flip {
  transform: scaleX(-1);
}

/* ------------------------- Categories ------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  padding: 14px 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  border-color: #cadcf1;
  box-shadow: var(--shadow);
}

.cat-media {
  height: 180px;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: 10px;
  overflow: hidden;
  background: #ecf1fb;
}

.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

/* Backdrop tones matching the banner each cut-out came from, so the tile
   reads as one flat surface instead of a photo pasted on a panel. */
.tone-med {
  background: #ecf1fb;
}

.tone-baby {
  background: #c0dcf5;
}

.tone-skin {
  background: #f0f0f3;
}

/* Cut-outs shot on white sit on a white tile so the edge disappears. */
.tone-white {
  background: #fff;
}

/* Full-bleed photos (not cut-outs) fill their tile edge to edge. The doubled
   class keeps this ahead of the .cat-media img / .product-media img defaults,
   which would otherwise win on source order. */
.cat-media.media-photo,
.product-media.media-photo,
.subcat-media.media-photo,
.cat-product-media.media-photo {
  padding: 0;
}

.cat-media.media-photo img,
.product-media.media-photo img,
.subcat-media.media-photo img,
.cat-product-media.media-photo img {
  object-fit: cover;
}

.cat-card:hover .cat-media img {
  transform: scale(1.06);
}

.cat-card h3 {
  flex: 1 0 auto;
  font-size: 0.92rem;
  font-weight: 800;
}

.show-more {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8ba0ba;
  transition: color 0.18s ease;
}

.cat-card:hover .show-more {
  color: var(--navy-soft);
}

.explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  color: #4a6a92;
  transition: color 0.18s ease, gap 0.18s ease;
}

.explore .ico {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.cat-card:hover .explore {
  gap: 10px;
  color: var(--navy);
}

/* ------------------------- Products ------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #cadcf1;
  box-shadow: var(--shadow);
}

.product-media {
  height: 195px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #ecf1fb;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-card h3 {
  flex: 1 0 auto;
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-card h3 small {
  display: block;
  margin-top: 2px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b829f;
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid rgba(31, 170, 90, 0.35);
  border-radius: 9px;
  background: #f1fbf5;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.buy-btn .ico {
  width: 15px;
  height: 15px;
}

.buy-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ------------------------- Prescription ------------------------- */

.rx-panel {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 340px;
  align-items: center;
  gap: 28px;
  padding: 26px 30px;
  border: 1px solid #dbe8f7;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #eef5fd, #e5eefa);
}

.rx-art {
  position: relative;
}

.rx-art img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rx-badge {
  position: absolute;
  right: -12px;
  bottom: -12px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}

.rx-badge .ico {
  width: 24px;
  height: 24px;
}

.rx-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.rx-lead {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
}

.rx-copy p:last-child {
  margin: 0;
  color: #55708f;
}

.rx-drop {
  padding: 20px;
  border: 2px dashed #b9cfe9;
  border-radius: var(--radius);
  background: #fff;
  text-align: left;
}

.rx-drop-ico {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  color: var(--blue);
  stroke-width: 1.5;
}

.rx-drop h3 {
  font-size: 1.02rem;
  font-weight: 800;
}

.rx-drop p {
  margin: 2px 0 14px;
  font-size: 0.82rem;
  color: #6b829f;
}

.more-line {
  margin: 26px 0 0;
  text-align: center;
}

.more-line a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, gap 0.18s ease;
}

.more-line a:hover {
  border-color: var(--blue);
  gap: 12px;
}

.more-line .ico {
  width: 16px;
  height: 16px;
}

/* ------------------------- "We make healthcare easy" ------------------------- */

.easy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f9fe 0%, #e9f1fb 55%, #eef5fd 100%);
}

/* Soft decorative blobs, purely atmospheric. */
.easy-leaf {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(47, 111, 196, 0.1), transparent 65%);
  pointer-events: none;
}

.easy-leaf-a {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
}

.easy-leaf-b {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -220px;
}

.easy > .container {
  position: relative;
  z-index: 1;
}

.easy-head {
  text-align: center;
  margin-bottom: 34px;
}

.easy-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-weight: 800;
}

.easy-head p {
  margin: 10px 0 0;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: #5b7594;
}

.easy-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.easy-rule i {
  width: 84px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #bcd4ee);
}

.easy-rule i:last-child {
  background: linear-gradient(90deg, #bcd4ee, transparent);
}

.easy-rule svg {
  width: 26px;
  height: 26px;
}

.easy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.easy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 24px 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: 0 14px 40px rgba(18, 58, 107, 0.08);
}

.easy-green {
  background: linear-gradient(180deg, #f0fbf4, #e6f7ec);
}

.easy-blue {
  background: linear-gradient(180deg, #eef4fd, #e2ecfa);
}

.easy-steps {
  background: #fff;
  padding-bottom: 24px;
  justify-content: flex-start;
}

.easy-steps .easy-note {
  margin-top: auto;
}

.easy-art {
  width: min(100%, 260px);
  margin-bottom: 16px;
}

.easy-art svg {
  width: 100%;
  height: auto;
}

.easy-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 800;
}

.easy-green h3 {
  color: #17864a;
}

.easy-card p {
  margin: 10px 0 18px;
  max-width: 30ch;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5b7594;
}

.easy-green p strong {
  color: #17864a;
  font-weight: 700;
}

.easy-btn {
  width: min(100%, 250px);
  padding: 13px 22px;
}

/* Mini feature strip pinned to the bottom of the two action cards. */
.easy-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% + 48px);
  margin: 22px -24px 0;
  padding: 14px 10px;
  border-top: 1px solid rgba(18, 58, 107, 0.08);
}

.easy-mini li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.68rem;
  line-height: 1.3;
  text-align: left;
  color: #5b7594;
}

.easy-mini li + li {
  border-left: 1px solid rgba(18, 58, 107, 0.08);
}

.easy-mini .ico {
  width: 17px;
  height: 17px;
  color: var(--navy-soft);
}

.easy-green .easy-mini .ico {
  color: #17864a;
}

/* ---- How it works ---- */

.easy-dots {
  display: block;
  width: 90px;
  height: 4px;
  margin: 14px 0 22px;
  background-image: radial-gradient(circle, #c6d9ef 2px, transparent 2px);
  background-size: 12px 4px;
}

.steps3 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  width: 100%;
}

.steps3 > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex: 1 1 0;
  min-width: 0;
}

.s-ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f2f7fd;
  border: 1px solid #dfeaf8;
  color: var(--blue);
}

.s-ico .ico {
  width: 24px;
  height: 24px;
  stroke-width: 1.6;
}

.s-num {
  font-family: "Urbanist", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
}

.s-label {
  font-size: 0.68rem;
  line-height: 1.4;
  color: #5b7594;
  white-space: nowrap;
}

.s-link {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 22px;
  color: #b8cce4;
}

.s-link .ico {
  width: 16px;
  height: 16px;
}

.s-dash {
  display: block;
  width: 22px;
  height: 3px;
  background-image: radial-gradient(circle, #c6d9ef 1.5px, transparent 1.5px);
  background-size: 7px 3px;
}

.easy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f2f7fd;
  border: 1px solid #e0ebf8;
  text-align: left;
}

.easy-note .ico {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--blue);
}

.easy-note span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #5b7594;
}

.easy-note strong {
  display: block;
  color: var(--navy-soft);
  font-weight: 700;
}

/* ---- Bottom strip ---- */

.easy-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  max-width: 100%;
  margin: 26px auto 0;
  padding: 14px 18px 14px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(18, 58, 107, 0.07);
}

.easy-bar > .ico {
  width: 30px;
  height: 30px;
  color: var(--blue);
  stroke-width: 1.5;
}

.easy-bar-copy {
  font-size: 0.78rem;
  color: #5b7594;
  line-height: 1.45;
}

.easy-bar-copy strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

/* ------------------------- Promo banner ------------------------- */

.promo {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) 300px;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 320px at 78% 20%, rgba(255, 255, 255, 0.22), transparent 70%),
    linear-gradient(115deg, #1b4b8d 0%, #2a68b8 55%, #4f8bd6 100%);
  color: #fff;
  overflow: hidden;
}

.promo-copy h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.promo-copy p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.promo-art img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(9, 32, 63, 0.3);
}

.promo-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.promo-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.3;
  color: #fff;
}

.promo-features .ico {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

/* ------------------------- About ------------------------- */

/* stretch so the map runs the full height of the copy beside it */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 36px;
}

.about-media {
  position: relative;
}

.about-media img,
.about-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: -10px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(14, 45, 85, 0.3);
}

.about-badge .ico {
  width: 18px;
  height: 18px;
}

.about-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
}

.about-copy p {
  margin-bottom: 12px;
  color: #55708f;
  font-size: 0.92rem;
  line-height: 1.75;
}

.about-facts {
  display: grid;
  gap: 12px;
  margin: 20px 0 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fafd;
}

.about-facts li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.about-facts .ico {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--navy-soft);
}

.about-facts span {
  font-size: 0.76rem;
  color: #6b829f;
  line-height: 1.5;
}

.about-facts strong {
  display: block;
  margin-top: 1px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ------------------------- Category / product page ------------------------- */

/* A single, non-rotating banner for the category pages. */
.hero-slider.is-static .slider-dots {
  display: none;
}

.page-intro {
  max-width: 62ch;
  margin: 0 auto 30px;
  text-align: center;
  color: #55708f;
  font-size: 0.95rem;
  line-height: 1.75;
}

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.subcat-card {
  display: block;
  padding: 14px 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.subcat-card:hover {
  transform: translateY(-5px);
  border-color: #cadcf1;
  box-shadow: var(--shadow);
}

/* Background matches the backdrop the cut-outs were taken from, so the edges
   of each crop disappear into the tile. */
.subcat-media {
  height: 200px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 10px;
  background: #f0f0f3;
}

.subcat-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.subcat-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
}

.subcat-card span {
  display: block;
  margin-top: 3px;
  font-size: 0.76rem;
  color: #7b90ab;
}

/* Empty slot waiting for a real product photo. */
.is-slot {
  display: grid;
  place-items: center;
  background: #f4f8fd;
  border: 2px dashed #cddef1;
}

.is-slot span {
  font-family: "Urbanist", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #bcd2ea;
}

/* Promo strip */
.cat-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, #eef5fd 0%, #e3eefb 60%, #dbe9fa 100%);
  border: 1px solid #dbe8f7;
}

.cat-promo h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
}

.cat-promo h2 em {
  font-style: normal;
  color: var(--navy-soft);
}

.cat-promo p {
  max-width: 46ch;
  margin: 12px 0 20px;
  color: #55708f;
  font-size: 0.94rem;
}

.promo-points {
  display: grid;
  gap: 12px;
}

.promo-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.promo-points .ico {
  width: 20px;
  height: 20px;
  color: var(--navy-soft);
}

/* Product cards on the category page */
.cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.cat-head h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 800;
}

.cat-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cat-product {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cat-product:hover {
  transform: translateY(-5px);
  border-color: #cadcf1;
  box-shadow: var(--shadow);
}

/* Product tiles are wider than the packshots are, so these never crop - the
   whole pack is always shown, letterboxed on a neutral tile. Overrides the
   .media-photo cover/no-padding defaults for this grid only. */
.cat-product-media,
.cat-product-media.media-photo {
  height: 300px;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 10px;
  background: #f6f8fc;
}

.cat-product-media img,
.cat-product-media.media-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cat-product:hover .cat-product-media img {
  transform: scale(1.05);
}

.cat-product h3 {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.cat-product .brand-line {
  margin: 3px 0 0;
  font-size: 0.76rem;
  color: #7b90ab;
}

.cat-product .desc {
  flex: 1 0 auto;
  margin: 9px 0 14px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #66809d;
}

/* ------------------------- Why choose ------------------------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-card .ico {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  color: var(--navy-soft);
  stroke-width: 1.5;
}

.why-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Urbanist", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.why-card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #66809d;
}

/* ------------------------- Footer ------------------------- */

.site-footer {
  margin-top: 24px;
  background: linear-gradient(180deg, #123a6b, #0d2b52);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.1fr;
  gap: 44px;
  padding: 44px 0 34px;
}

.brand-on-dark .brand-text strong,
.brand-on-dark .brand-text em {
  color: #fff;
}

.footer-brand p {
  margin: 16px 0 18px;
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  transition: background 0.18s ease, transform 0.18s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.socials .ico {
  width: 16px;
  height: 16px;
}

.footer-col h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-links li,
.contact-list li {
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 3px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.contact-list .ico {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: #8fc0f2;
}

.contact-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ------------------------- Floating call + WhatsApp ------------------------- */

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn .ico {
  width: 27px;
  height: 27px;
}

.float-call {
  background: linear-gradient(135deg, #2f6fc4, var(--navy));
  box-shadow: 0 12px 26px rgba(18, 58, 107, 0.4);
}

.float-wa {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 12px 26px rgba(31, 170, 90, 0.42);
}

.float-wa .ico {
  width: 28px;
  height: 28px;
}

/* ------------------------- Reveal animation ------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .slide,
  .slide.is-active .slide-copy > * {
    transition: none;
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ------------------------- Responsive ------------------------- */

@media (max-width: 1150px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .slide-copy {
    width: min(52%, 460px);
  }
}

@media (max-width: 1024px) {
  /* The pill has to open up into a panel once the menu can expand. */
  .header-inner {
    flex-wrap: wrap;
    min-height: 56px;
    gap: 12px;
    border-radius: 22px;
    padding: 8px 12px 8px 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-media img,
  .about-map {
    height: 340px;
    min-height: 0;
  }

  .subcat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cat-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cat-promo {
    grid-template-columns: 1fr;
    padding: 26px 24px;
  }

  .promo-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    order: 3;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 10px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid #f0f5fb;
  }

  .site-nav a::after {
    display: none;
  }

  .slide-copy {
    width: min(58%, 420px);
  }

  .slide::after {
    background: linear-gradient(
      90deg,
      var(--slide-scrim) 0%,
      var(--slide-scrim) 42%,
      rgba(255, 255, 255, 0) 76%
    );
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rx-panel {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .rx-drop {
    grid-column: 1 / -1;
  }

  .easy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .easy-steps {
    grid-column: 1 / -1;
  }

  .promo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-features {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header .container {
    padding-inline: 14px;
  }

  .section {
    padding: 38px 0;
  }

  .section-title {
    gap: 10px;
    font-size: 1.02rem;
  }

  .pulse {
    width: 44px;
  }

  /* Phones: stack the slide - copy on the tinted panel, artwork underneath. */
  .hero-slider {
    height: 620px;
  }

  .subcat-grid,
  .cat-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-media img,
  .about-map {
    height: 280px;
    min-height: 0;
  }

  .about-actions .btn {
    flex: 1 1 100%;
  }

  .slide-img {
    inset: auto 0 0 0;
    height: 42%;
    object-position: center bottom;
  }

  .slide::after {
    display: none;
  }

  /* padding-top clears the floating navbar */
  .slide-inner {
    height: 58%;
    align-items: flex-start;
    padding-top: 92px;
  }

  .slide-copy {
    width: 100%;
  }

  .slide-title {
    font-size: clamp(1.9rem, 8.6vw, 2.4rem);
  }

  .slide-text {
    margin: 12px 0 18px;
    font-size: 0.9rem;
  }

  .slide-actions .btn {
    flex: 1 1 100%;
  }

  /* No room between the buttons and the artwork, so ride the bottom edge. */
  .slider-dots {
    width: min(var(--max), calc(100% - 28px));
    bottom: 14px;
  }

  .trust-bar {
    padding: 16px 0;
  }

  .hero-trust {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero-trust li {
    flex: 1 1 42%;
    padding-right: 0;
    border-right: 0;
  }

  .category-grid,
  .product-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .easy-grid {
    grid-template-columns: 1fr;
  }

  .easy-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .easy-mini li {
    font-size: 0.62rem;
  }

  .brand-strip ul {
    justify-content: flex-start;
    gap: 14px 22px;
  }

  .brand-strip li {
    font-size: 1rem;
  }

  .rx-panel {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    text-align: center;
  }

  .rx-art img {
    height: 190px;
  }

  .rx-badge {
    right: 12px;
  }

  .rx-drop {
    text-align: center;
  }

  .promo {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .promo-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 34px 0 26px;
  }

  .scooter {
    margin-inline: 0;
  }
}

@media (max-width: 400px) {
  .category-grid,
  .product-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}
