/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KK AGRICO v5 â€” Industrial Orange + Slate
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
  --slate: #2b2f36; /* primary slate charcoal */
  --slate-dark: #1e2126; /* deeper slate (header/footer) */
  --slate-mid: #3a3f47;
  --accent: #f26a1b; /* industrial orange */
  --accent-dark: #d9560c;
  --accent-soft: #fff0e6; /* orange tint bg */
  --bg: #f4f5f7; /* steel grey-white */
  --surface: #ffffff;
  --border: #e2e5e9;
  --border-strong: #d2d6dc;
  --text: #1e2126;
  --text-mid: #4a4f57;
  --text-muted: #7a828c;
  --steel: #5b6470;
  --green: #2e8b57;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* monospace technical accent */
.mono {
  font-family: "SF Mono", "Roboto Mono", ui-monospace, "Menlo", monospace;
  font-feature-settings: "tnum";
}

/* â”€â”€ Logo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.logo-kk {
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.logo-agrico {
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.site-header .logo-agrico,
.luxury-footer .logo-agrico {
  color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANNOUNCEMENT BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.announcement-bar {
  background: var(--slate-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--accent);
}
.announcement-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0px 0;
  animation: ann-scroll 38s linear infinite;
}
.announcement-track .sep {
  color: var(--accent);
  font-weight: 700;
}
.announcement-track b {
  color: #fff;
  font-weight: 700;
}
@keyframes ann-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER â€” Monarque two-level (utility bar + main nav)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--slate);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

/* Utility bar â€” desktop */
.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.utility-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.utility-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.utility-link svg {
  width: 15px;
  height: 15px;
}
.utility-link:hover {
  color: #fff;
}

.utility-logo {
  text-align: center;
  line-height: 1;
}
.utility-logo .logo-kk {
  font-size: 26px;
}
.utility-logo .logo-agrico {
  font-size: 26px;
}
.logo-tagline {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}
.utility-icon-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  position: relative;
}
.utility-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.utility-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main nav â€” desktop */
.main-nav {
  background: var(--slate-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.main-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav-inner::-webkit-scrollbar {
  display: none;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  letter-spacing: 0.2px;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
  border-bottom-color: var(--accent);
}

/* Mobile header */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 56px;
}
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.mobile-logo {
  font-size: 20px;
  line-height: 1;
}
.mobile-logo .logo-kk,
.mobile-logo .logo-agrico {
  font-size: 20px;
}
.mobile-header-icons {
  display: flex;
  gap: 4px;
}
.mobile-header-icons .utility-icon-btn {
  color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO â€” split angular industrial
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-section {
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 560px;
  height: 100%;
}
.hero-left {
  padding: 48px 56px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.hero-left h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.hero-left h1 span {
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.hero-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
}

/* right image with angular clip */
.hero-right {
  position: relative;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
/* soft tonal blend along the diagonal seam */
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(43, 47, 54, 0.85) 0%,
    rgba(43, 47, 54, 0.35) 20%,
    rgba(43, 47, 54, 0) 42%
  );
  z-index: 1;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
/* orange accent bar bottom of hero */
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
  z-index: 3;
}

/* buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition:
    background 0.15s,
    transform 0.1s;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.btn-primary:active {
  transform: translateY(1px);
}
.btn-primary.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition:
    border-color 0.15s,
    background 0.15s;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SLIDER CONTROLS  (slides reuse .hero-grid layout)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-slider {
  position: relative;
  min-height: 560px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide .page-container {
  height: 100%;
}

/* product slides: full-bleed cover with the same diagonal cut as slide 1 */
.hero-right.contain img {
  object-fit: cover;
  object-position: center;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.hero-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.hero-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.hero-arrow.prev {
  left: 18px;
}
.hero-arrow.next {
  right: 18px;
}
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    width 0.2s,
    border-radius 0.2s;
}
.hero-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BRAND COMPATIBILITY STRIP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.brand-strip {
  background: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.brand-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.brand-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  flex: 1;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 4px;
}
.brand-logo img {
  max-height: 34px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition:
    filter 0.2s,
    opacity 0.2s;
}
.brand-logo.jd img {
  max-height: 40px;
}
.brand-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}
/* text fallback shown only if logo image fails to load */
.brand-fallback {
  display: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-logo.jd .brand-fallback {
  color: #367c2b;
}
.brand-logo.mahindra .brand-fallback {
  color: #c41e3a;
}
.brand-logo.swaraj .brand-fallback {
  color: #1e3a8a;
}
.brand-logo.sonalika .brand-fallback {
  color: #dc2626;
}
.brand-logo.eicher .brand-fallback {
  color: #4338ca;
}
.brand-logo.farmtrac .brand-fallback {
  color: #ea580c;
}
.brand-logo.indo .brand-fallback {
  color: #059669;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION SCAFFOLD
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-pad {
  padding: 52px 0;
}
.bg-light {
  background: var(--bg);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 26px;
}
.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
}
.view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.view-all:hover {
  color: var(--accent);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CATEGORIES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  display: block;
  position: relative;
}
.cat-img-root {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.cat-card:hover .cat-img-root {
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(242, 106, 27, 0.16);
}
.cat-img-root img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.cat-card:hover .cat-img-root img {
  transform: scale(1.05);
}
.cat-img-root::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 33, 38, 0.92) 0%,
    rgba(30, 33, 38, 0.45) 32%,
    transparent 58%
  );
}
.cat-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
  line-height: 1.2;
  padding: 14px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUCT CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.product-grid {
  display: grid;
  gap: 16px;
}
.product-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.product-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  position: relative;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 0 0 2px var(--accent);
}

.product-card-wishlist {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.product-card-wishlist:hover {
  background: #f8f8f8;
  color: var(--accent);
}

/* Monarque gradient shimmer */
.product-card-image-container {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f5f5f5;
  overflow: hidden;
}
.product-card-image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    144deg,
    rgba(0, 0, 0, 0.07),
    rgba(0, 0, 0, 0.03) 51%,
    rgba(0, 0, 0, 0.14) 92%
  );
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.3s;
}
.product-card:hover .product-card-image-container::before {
  opacity: 1.4;
}
.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-image {
  transform: scale(1.04);
}

.product-card-discount {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  letter-spacing: 0.5px;
}
.product-card-link {
  display: block;
}
.product-card-info {
  padding: 12px 12px 14px;
}
.product-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.3px;
}
.product-card-mrp-price {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GENERIC COLLECTION CARD (banner + grid)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gcc-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: stretch;
}
.gcc-layout.gcc-reverse {
  grid-template-columns: 1fr 300px;
}
.gcc-layout.gcc-reverse .gcc-banner {
  order: 2;
}
.gcc-layout.gcc-reverse .gcc-products {
  order: 1;
}

.gcc-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
}
.gcc-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gcc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 33, 38, 0.94) 0%,
    rgba(30, 33, 38, 0.55) 45%,
    rgba(30, 33, 38, 0.2) 100%
  );
}
.gcc-content {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
}
.gcc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.gcc-title {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.gcc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin-bottom: 18px;
}
.gcc-products .product-grid {
  height: 100%;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testi-section {
  background: var(--bg);
  padding: 52px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
}
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}
.testi-quote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 20px;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--slate);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testi-loc {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.testi-loc svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MID PROMO BANNER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.promo-section {
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30, 33, 38, 0.96) 0%,
    rgba(30, 33, 38, 0.86) 45%,
    rgba(43, 47, 54, 0.7) 100%
  );
  z-index: 1;
}
.promo-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.promo-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.promo-text h2 {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.promo-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 440px;
}
.promo-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promo-feat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
}
.feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(242, 106, 27, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 12px;
}
.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
.promo-feat strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.promo-feat span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRUST STRIP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-section {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.luxury-footer {
  background: var(--slate-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 52px 0 0;
  border-top: 3px solid var(--accent);
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-brand-col {
  max-width: 280px;
}
.footer-brand-logo {
  font-size: 30px;
  margin-bottom: 14px;
}
.footer-brand-col p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition:
    background 0.15s,
    color 0.15s;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-copy strong {
  color: rgba(255, 255, 255, 0.8);
}
.footer-pay {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .hero-left h1 {
    font-size: 40px;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid.cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .brand-logos {
    justify-content: center;
    gap: 20px 30px;
    flex: none;
  }
}

@media (max-width: 768px) {
  .utility-bar {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .mobile-header {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-right {
    height: 240px;
    order: -1;
  }
  .hero-right img {
    position: absolute;
    clip-path: none;
  }
  .hero-right::before {
    clip-path: none;
    background: linear-gradient(
      to top,
      var(--slate) 0%,
      rgba(43, 47, 54, 0.3) 60%,
      rgba(43, 47, 54, 0) 100%
    );
  }
  .hero-left {
    padding: 36px 0;
  }
  .hero-left h1 {
    font-size: 34px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-stats {
    gap: 18px;
  }
  .hero-stat strong {
    font-size: 22px;
  }

  .hero-slider {
    min-height: 0;
  }
  .hero-slide {
    position: relative;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .hero-slide.active {
    display: block;
  }
  .hero-arrow {
    display: none;
  }
  .hero-dots {
    bottom: 14px;
  }

  .gcc-layout,
  .gcc-layout.gcc-reverse {
    grid-template-columns: 1fr;
  }
  .gcc-layout.gcc-reverse .gcc-banner {
    order: 1;
  }
  .gcc-layout.gcc-reverse .gcc-products {
    order: 2;
  }
  .gcc-banner {
    min-height: 200px;
  }
  .product-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .promo-text h2 {
    font-size: 28px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-grid.cols-5,
  .product-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .brand-logos {
    gap: 16px 22px;
  }
  .brand-logo img {
    max-height: 26px;
    max-width: 96px;
  }
  .brand-logo.jd img {
    max-height: 32px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
.cursor-pointer {
  display: none;
}
@media (min-width: 1024px) {
  .mobile-header-icons .badge-icon-btn[aria-label="Shopping cart"] {
    display: none !important;
  }
}
.utility-bar-content .badge-icon-btn[aria-label="Shopping cart"] {
  display: unset !important;
}
