/* ===========================================================
   Do-InMinutes — Aerion theme preview
   Palette: Cobalt Blue #1B3ECB + Golden Yellow #F5C400
   =========================================================== */

:root {
  --brand: #1B3ECB;
  --brand-dark: #1230A0;
  --brand-light: #EEF2FF;
  --accent: #F5C400;
  --accent-dark: #e6b600;
  --ink: #111827;
  --muted: #6B7280;
  --bg: #F8F9FF;
  --surface: #FFFFFF;
  --price: #1B3ECB;
  --sale: #DC2626;

  /* Shoopy platform tokens */
  --fg2: #374151;
  --fg6: #9CA3AF;
  --border: #E5E7EB;
  --border-2: #ECEEF1;
  --bg-tile: #F8F9FB;
  --line-strong: #D1D5DB;

  /* Component tokens */
  --star: #F5A623;
  --hero-dark: #060e1f;
  --hero-dark-rgb: 6, 14, 31;
  --in-stock: #22c55e;
  --wa: #25D366;

  /* Footer palette */
  --footer-bg: #0D1A5C;
  --footer-text: #C7D2F0;
  --footer-muted: #8899CC;
  --footer-line: #1B2E70;
  --footer-line-strong: #2A4090;
  --footer-copy: #5568A0;

  --radius: 14px;
  --shadow: 0 1px 2px rgba(17, 24, 39, .04), 0 8px 24px rgba(17, 24, 39, .06);
  --shadow-hover: 0 4px 10px rgba(17, 24, 39, .08), 0 20px 44px rgba(17, 24, 39, .14);
  --container: 1240px;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-display: "Barlow Condensed", "Barlow", Impact, "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--brand);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .03em;
}

.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 38px;
}

.announce span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.announce .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  flex: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 76px;
  gap: 24px;
}

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

.brand img {
  height: 52px;
  width: auto;
}

.primary-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.primary-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  padding: 6px 0;
  transition: color .18s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.primary-nav a:hover {
  color: var(--brand);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--ink);
  border-radius: 50%;
  transition: background .15s ease, color .15s ease;
  position: relative;
}

.icon-btn:hover {
  background: var(--brand-light);
  color: var(--brand);
}

.icon-btn svg {
  width: 21px;
  height: 21px;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: #fff;
  width: 200px;
  transition: width .25s ease, box-shadow .2s ease, border-color .2s ease;
  color: var(--fg6);
}

.search-pill:focus-within {
  width: 248px;
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.search-pill svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--muted);
}

.search-pill input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 13.5px;
  color: var(--ink);
  font-family: inherit;
}

.hamburger {
  display: none;
}

/* ---------- Hero (full-bleed banner) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--hero-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(var(--hero-dark-rgb), .94) 0%,
      rgba(var(--hero-dark-rgb), .80) 38%,
      rgba(var(--hero-dark-rgb), .24) 68%,
      rgba(var(--hero-dark-rgb), .04) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 96px;
}

.hero-copy {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  flex: none;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6.4vw, 84px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p.lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
  max-width: 460px;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 62, 203, .3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.hero .btn-ghost {
  color: rgba(255, 255, 255, .9);
  border-color: rgba(255, 255, 255, .35);
}

.hero .btn-ghost:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.hero-meta {
  margin-top: 34px;
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 24px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta strong {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.hero-meta span {
  font-size: 11px;
  color: rgba(255, 255, 255, .48);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  right: 5vw;
  bottom: 36px;
  z-index: 2;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 11px 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .28);
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--border);
}

.pulse-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--in-stock);
  flex: none;
  position: relative;
}

.pulse-ring::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--in-stock);
  opacity: .4;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .4;
  }

  50% {
    transform: scale(1.4);
    opacity: .1;
  }
}

.hero-badge small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.hero-badge b {
  font-size: 13.5px;
  color: var(--ink);
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 20px;
}

.section-head .eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 8px;
  opacity: .9;
}

.section-head h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.0;
  margin: 0;
  color: var(--ink);
}

.view-all {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.view-all svg {
  width: 16px;
  height: 16px;
  transition: transform .18s ease;
}

.view-all:hover svg {
  transform: translateX(3px);
}

/* ---------- Categories (6-col wrap) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cat-card {
  display: block;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  text-align: center;
}

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

.cat-card .cat-img {
  aspect-ratio: 1 / 1;
  background: var(--brand-light);
  overflow: hidden;
}

.cat-card .cat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform .25s ease;
}

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

.cat-card .cat-label {
  padding: 10px 8px 12px;
}

.cat-card .cat-label b {
  font-size: 12px;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}

/* ---------- Product cards ---------- */
.product-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}

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

.pc-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg);
  overflow: hidden;
}

.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .3s ease;
}

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

.pc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 9px;
  border-radius: 20px;
}

.pc-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .15s ease;
}

.pc-wish:hover {
  transform: scale(1.1);
  background: #fff;
}

.pc-wish svg {
  width: 17px;
  height: 17px;
  color: var(--ink);
}

.pc-body {
  padding: 14px 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.pc-cat {
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  opacity: .8;
}

.pc-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}

.pc-price .now {
  font-size: 17px;
  font-weight: 700;
  color: var(--price);
}

.pc-price .mrp {
  font-size: 13px;
  color: var(--fg6);
  text-decoration: line-through;
}

.pc-price .off {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sale);
}

.pc-add {
  margin-top: 12px;
  height: 40px;
  border-radius: 22px;
  border: 1.5px solid var(--brand);
  background: transparent;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .18s ease, color .18s ease;
}

.pc-add svg {
  width: 15px;
  height: 15px;
}

.product-card:hover .pc-add {
  background: var(--brand);
  color: #fff;
}

/* ---------- GenericCollectionCard ---------- */
.gcc {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: stretch;
}

.gcc-reverse {
  grid-template-columns: 1fr 300px;
}

.gcc-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.gcc-banner img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gcc-banner .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, .05) 0%, rgba(17, 24, 39, .78) 100%);
}

.gcc-banner .gcc-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: #fff;
}

.gcc-banner .gcc-content .eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 8px;
  font-weight: 600;
}

.gcc-banner .gcc-content h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.gcc-banner .gcc-content p {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: .9;
  margin: 0 0 20px;
  max-width: 240px;
}

.gcc-banner .gcc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}

.gcc-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Full-width promo ---------- */
.promo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}

.promo img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, .92) 0%, rgba(17, 24, 39, .65) 48%, rgba(17, 24, 39, .08) 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  padding: 52px 58px;
  color: #fff;
  max-width: 560px;
}

.promo-content .eyebrow {
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .8;
  margin: 0 0 14px;
  font-weight: 600;
}

.promo-content h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 54px);
  line-height: .95;
  margin: 0 0 16px;
}

.promo-content p {
  font-size: 15px;
  line-height: 1.65;
  opacity: .9;
  margin: 0 0 28px;
  max-width: 420px;
}

.promo .btn-primary {
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
}

.promo .btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 10px 26px rgba(245, 196, 0, .4);
}

.promo-steps {
  display: flex;
  gap: 26px;
  margin-top: 26px;
}

.promo-steps div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .88);
}

.promo-steps .n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex: none;
}

/* ---------- Why Do-InMinutes ---------- */
.why {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card .ic svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.why-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.why-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.why-strip {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 28px;
  border-top: 1px dashed var(--line-strong);
}

.why-chip {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 20px;
  padding: 7px 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 30px;
  margin-top: 8px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 54px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--footer-muted);
  max-width: 300px;
  margin: 0 0 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--footer-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}

.footer-social a:hover {
  background: var(--footer-line);
  border-color: var(--footer-line-strong);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  color: var(--footer-text);
}

.footer-col h5 {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--footer-muted);
  padding: 5px 0;
  transition: color .15s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--footer-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12.5px;
  color: var(--footer-copy);
  margin: 0;
}

.pay-badges {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.pay-badges .pay-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 44px;
  padding: 0 9px;
  background: #fff;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}

.pay-badges .pay-chip svg {
  height: 17px;
  width: auto;
  display: block;
}

.pay-badges .pay-chip--cod {
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--ink);
}

.pay-badges .pay-chip--cod svg {
  height: 15px;
  width: 15px;
  color: var(--brand);
}

/* ---------- Product star ratings ---------- */
.pc-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.pc-stars .stars {
  color: var(--star);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.pc-stars small {
  font-size: 11px;
  color: var(--muted);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .65);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.testi-stars {
  color: var(--star);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg2);
  margin: 0 0 22px;
  font-style: italic;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
}

.testi-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 2px;
}

.testi-loc {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.testi-product {
  font-size: 11px;
  color: var(--brand);
  font-weight: 500;
  margin: 3px 0 0;
}

/* ---------- Category grid orphan centering ---------- */
@media (min-width: 921px) {
  .cat-card:nth-child(6n+1):nth-last-child(-n+4) {
    grid-column-start: 2;
  }
}

@media (min-width: 681px) and (max-width: 920px) {
  .cat-card:nth-child(5n+1):nth-last-child(-n+2) {
    grid-column-start: 3;
  }
}

@media (min-width: 421px) and (max-width: 680px) {
  .cat-card:nth-child(4n+1):nth-last-child(-n+2) {
    grid-column-start: 2;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
  }

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

@media (max-width: 920px) {
  .cat-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .primary-nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .search-pill {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .search-pill input {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero {
    min-height: 520px;
  }

  .hero .container {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .hero-scrim {
    background: linear-gradient(160deg, rgba(var(--hero-dark-rgb), .82) 0%, rgba(var(--hero-dark-rgb), .88) 55%, rgba(var(--hero-dark-rgb), .50) 100%);
  }

  .hero-badge {
    right: 24px;
    bottom: 24px;
  }

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

  .gcc-reverse {
    grid-template-columns: 1fr;
  }

  .gcc-reverse .gcc-banner {
    order: -1;
  }

  .gcc-banner {
    min-height: 260px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 44px 0;
  }

  .announce .hide-sm {
    display: none;
  }

  .announce .container {
    gap: 14px;
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .product-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gcc-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gcc-products .product-card:nth-child(3) {
    display: none;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .promo-content {
    padding: 36px 28px;
  }

  .promo .scrim {
    background: linear-gradient(180deg, rgba(17, 24, 39, .35) 0%, rgba(17, 24, 39, .88) 100%);
  }

  .promo-steps {
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 72px);
  }
}

@media (max-width: 420px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .cat-card .cat-label b {
    font-size: 11px;
  }
}

.notice {
  padding: 0px !important;
}

.section {
  padding: 5px;
}

/* =========================================================
   FINAL OVERRIDES — Mobile announcement/review scroll + centered product text
   ========================================================= */

/* Product card name, sale price and MRP center aligned */
.pc-body,
.product-card .pc-body,
.product-card-body,
.product-card-info,
.product-info {
  text-align: center !important;
  align-items: center !important;
}

.pc-name,
.product-name,
.product-card-name,
.product-title,
.product-card-title,
[class*="product-card-name"],
[class*="product-name"] {
  text-align: center !important;
  width: 100% !important;
}

.pc-price,
.price-row,
.product-price,
.product-card-price,
.product-card-sale-price,
.sale-price,
.product-card-mrp-price,
.mrp-price,
[class*="product-card-price"],
[class*="sale-price"],
[class*="mrp-price"] {
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

.pc-price .now,
.pc-price .mrp,
.price-now,
.price-mrp,
.product-card-price,
.product-card-sale-price,
.product-card-mrp-price,
.sale-price,
.mrp-price {
  text-align: center !important;
}

/* Mobile only */
@media (max-width: 680px) {
  /* Announcement bar scrolling in mobile */
  .announce {
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  .announce .container {
    width: max-content !important;
    max-width: none !important;
    min-width: max-content !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    white-space: nowrap !important;
    animation: doAnnScroll 18s linear infinite !important;
    will-change: transform;
  }

  .announce .container > * {
    flex: 0 0 auto !important;
  }

  .announce:hover .container {
    animation-play-state: paused !important;
  }

  /* Review/testimonial section scrolling in mobile */
  .testi-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 14px !important;
    padding-bottom: 10px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .testi-grid::-webkit-scrollbar {
    display: none !important;
  }

  .testi-grid {
    scrollbar-width: none !important;
  }

  .testi-card {
    flex: 0 0 calc((100% - 14px) / 1.5) !important;
    min-width: calc((100% - 14px) / 1.5) !important;
    scroll-snap-align: start !important;
  }
}

@keyframes doAnnScroll {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
