/* ===========================================================
   Do-InMinutes â€” Aerion theme preview
   Palette: Cobalt Blue #1B3ECB + Golden Yellow #F5C400
   =========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
: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, 0.04), 0 8px 24px rgba(17, 24, 39, 0.06);
  --shadow-hover:
    0 4px 10px rgba(17, 24, 39, 0.08), 0 20px 44px rgba(17, 24, 39, 0.14);
  --container: 1240px;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-display:
    "Barlow Condensed", "Barlow", Impact, "Arial Narrow", sans-serif;

  --typography-font-family: "Inter", sans-serif;
}

body {
  font-family: var(--ff-display);
}

.container {
  width: 100%;

  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--brand);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.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, 0.4);
  flex: 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), 0.94) 0%,
    rgba(var(--hero-dark-rgb), 0.8) 38%,
    rgba(var(--hero-dark-rgb), 0.24) 68%,
    rgba(var(--hero-dark-rgb), 0.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: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.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: 0.94;
  letter-spacing: -0.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, 0.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 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.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, 0.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, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn-ghost:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta {
  margin-top: 34px;
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.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: -0.01em;
}

.hero-meta span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  right: 5vw;
  bottom: 36px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 11px 16px;
  box-shadow: 0 4px 24px rgba(0, 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: 0.4;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.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;
  max-width: 1600px;
}

.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: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 8px;
  opacity: 0.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;
  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 0.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 0.2s ease,
    box-shadow 0.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: #fff;
  overflow: hidden;
}

.cat-card .cat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.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;
}

.pr-long-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.pr-long-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pr-long-card .pr-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg);
  overflow: hidden;
}

.pr-long-card .pr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}

.pr-discount {
  position: absolute;
  top: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 20px;
}

.pr-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.pc-wishlist:hover {
  transform: scale(1.1);
  background: #fff;
}

.pc-wishlist 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: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  opacity: 0.8;
}

.pr-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.pr-sale-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}

.pr-sale-price .now {
  font-size: 17px;
  font-weight: 700;
  color: var(--price);
}

.pr-mrp-price {
  font-size: 13px;
  color: var(--fg6);
  text-decoration: line-through;
}

.pr-sale-price .off {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sale);
}

.pr-outlined-button {
  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 0.18s ease,
    color 0.18s ease;
}

.pr-outlined-button svg {
  width: 15px;
  height: 15px;
}

.pr-long-card :hover .pr-outlined-button {
  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, 0.05) 0%,
    rgba(17, 24, 39, 0.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: 0.16em;
  text-transform: uppercase;
  opacity: 0.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;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.gcc-banner .gcc-content p {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.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, 0.92) 0%,
    rgba(17, 24, 39, 0.65) 48%,
    rgba(17, 24, 39, 0.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: 0.16em;
  text-transform: uppercase;
  opacity: 0.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: 0.95;
  margin: 0 0 16px;
}

.promo-content p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.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, 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, 0.88);
}

.promo-steps .n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.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;
  padding-bottom: 15px;
  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 0.15s ease,
    border-color 0.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: 0.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 0.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, 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: 0.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, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.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), 0.82) 0%,
      rgba(var(--hero-dark-rgb), 0.88) 55%,
      rgba(var(--hero-dark-rgb), 0.5) 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, 0.35) 0%,
      rgba(17, 24, 39, 0.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: 0px;
}

.text-center.relative.md\:static.\-top-\[10\%\] {
  padding-top: 220px;
}

.universal-border {
  border-radius: 32px !important;
}

.pr-plus-minus-button {
  background: #1b3ecb !important;
  color: #ffffff !important;
  border-color: #1b3ecb !important;
  transform: translateY(-2px);
  border-radius: 999px !important;
}

.pr-title {
  font-family: var(--ff-display);
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.02em !important;
  color: #111827 !important;
  margin: 0 0 14px !important;
}

/* Sale price */
.pr-sale-price {
  font-family: var(--ff-display);
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  color: #1b3ecb !important;
}

/* MRP price */
.pr-mrp-price {
  font-family: var(--ff-display);
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  color: #9ca3af !important;
  text-decoration: line-through !important;
  margin-left: 8px !important;
}

/* Outlined Add to Cart button */
.pr-outlined-button {
  border-radius: 999px !important;
  border: 2px solid #1b3ecb !important;
  background: transparent !important;
  color: #1b3ecb !important;
}

.pr-outlined-button:hover {
  background: #1b3ecb !important;
  color: #ffffff !important;
  border-color: #1b3ecb !important;
  transform: translateY(-2px);
}

/* Keep price row properly aligned */
.pr-sale-price,
.pr-mrp-price {
  display: inline-flex !important;
  align-items: baseline !important;
  vertical-align: baseline !important;
}

@media (max-width: 680px) {
  .pr-title {
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
  }

  .pr-sale-price {
    font-size: 12px !important;
  }

  .pr-mrp-price {
    font-size: 12px !important;
    margin-left: 6px !important;
  }
}

.solid-button__btn {
  background: #1b3ecb !important;
  color: #ffffff !important;
  border-color: #1b3ecb !important;
  transform: translateY(-2px);
  border-radius: 999px !important;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  padding: 6px 0;
  transition: color 0.18s ease;
  text-decoration: none;
}

.nav-link::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 0.22s ease;
}

.nav-link:hover {
  color: var(--brand);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.section-heading {
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1;
  margin: 0;
  color: var(--ink);
}

/* Keep section-heading aligned when used inside heading wrappers */
.section-head .section-heading {
  margin: 0;
}

/*  */
.page-container {
  max-width: 1240px !important;
}
.page-container.md\:px-10 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.search-container {
  padding: 0px 10px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}
.search-container .input-container {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  width: 280px !important;
}

#desktop-search-bar {
  color: #000 !important;
}
.input-container .search-box {
  border: none !important;
}
.search-container:before {
  content: unset !important;
}
.search-container {
  border-radius: 999px !important;
}
.search-container .search-icon {
  order: -1;
}
.search-btn-close {
  margin-right: 4px !important;
  padding-left: 6px !important;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  margin: unset !important;
}
nav.desktop-nav.mob-hide > .flex.items-center.space-x-4 {
  gap: 28px;
}
.search-icon svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--muted);
}
.section-heading-viewall {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.section-heading-viewall::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ProductGridCollection-component .section-heading-container {
  display: none;
}
