@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #001C3D;
  --navy-dark: #001028;
  --navy-light: #1a2d5a;
  --gold: #C59135;
  --gold-light: #e8c547;
  --gold-dark: #a07020;
  --orange: #C59135;
  --white: #ffffff;
  --gray-100: #f5f7fa;
  --gray-200: #e8ecf1;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #334155;
  --green: #25d366;
  --shadow: 0 4px 20px rgba(10,26,58,0.12);
  --shadow-lg: 0 8px 40px rgba(10,26,58,0.18);
  --radius: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { color: var(--white); display: flex; align-items: center; gap: 6px; font-size: 0.78rem; }
.topbar-divider { opacity: 0.4; margin: 0 4px; }
.follow-text { font-size: 0.78rem; }
.dealer-link { color: var(--gold-light) !important; font-weight: 600; }
.social-icons a.fb { background: #1877f2; }
.social-icons a.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icons a.yt { background: #ff0000; }
.social-icons a.li { background: #0077b5; }

/* Logo Brand */
.logo-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-brand img { height: 52px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-arowin { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.15rem; color: var(--navy); letter-spacing: 1px; }
.logo-lubricants { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.65rem; color: var(--gold); letter-spacing: 3px; }
.logo-tagline { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.55rem; color: var(--navy); letter-spacing: 1px; font-style: italic; }
.header-login, .header-cart { display: flex; align-items: center; gap: 6px; }
.chevron { font-size: 0.7rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #eef1f6;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/home/cityscape.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.hero-oil-splash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(197,145,53,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 100% 20%, rgba(197,145,53,0.3) 0%, transparent 55%),
    linear-gradient(135deg, rgba(238,241,246,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(238,241,246,0.85) 100%);
  pointer-events: none;
}
.topbar-left a:hover { color: var(--gold-light); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a { color: var(--white); font-size: 0.78rem; }
.topbar-right a:hover { color: var(--gold-light); }
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  transition: var(--transition);
}
.social-icons a:hover { background: var(--gold); transform: scale(1.1); }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
.logo img { height: 60px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
}
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  text-transform: none;
  font-weight: 500;
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--gold); }
.dropdown-menu a::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions a {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--navy);
}
.header-actions a:hover { color: var(--gold); }
.cart-icon-wrap { position: relative; }
.cart-badge {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.mobile-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  background: var(--gray-100);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}
.search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}
.search-form input {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid var(--gray-200);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
}
.search-form input:focus { border-color: var(--gold); }
.search-form button {
  padding: 10px 20px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-weight: 600;
}
.search-form button:hover { background: var(--gold-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #f8f4e8 0%, #fff 30%, #e8edf5 70%, #d4dce8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(10,26,58,0.08) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(10,26,58,0.05), transparent);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-content h1 .gold { color: var(--gold); display: block; }
.hero-line {
  width: 80px; height: 3px;
  background: linear-gradient(to right, var(--navy) 50%, var(--gold) 50%);
  margin-bottom: 12px;
}
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
  padding-left: 0;
  border-left: none;
}
.hero-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  width: 90px;
}
.hero-feature svg {
  width: 32px; height: 32px;
  color: var(--navy);
  stroke: var(--navy);
}
.hero-feature span {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 0.72rem; }
.hero-products {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
}
.hero-products img {
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  transition: var(--transition);
}
.hero-products img:nth-child(1) { height: 180px; }
.hero-products img:nth-child(2) { height: 200px; }
.hero-products img:nth-child(3) { height: 220px; }
.hero-products img:nth-child(4) { height: 200px; }
.hero-products img:nth-child(5) { height: 180px; }
.hero-products img:hover { transform: translateY(-8px); }

/* Products Section */
.products-section { background: #f8f9fb; }
.title-underline { position: relative; }
.title-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 60px; height: 3px;
  background: var(--gold);
}
.btn-view-all {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.btn-view-all:hover { background: var(--gold); color: var(--white); }

/* Featured Section */
.featured-heading { margin-bottom: 28px; text-transform: uppercase; }
.featured-viewport { overflow: hidden; }
.featured-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 220px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.featured-card-top {
  display: flex;
  gap: 8px;
  padding: 12px;
  align-items: flex-start;
}
.featured-card-img {
  flex: 0 0 100px;
  display: flex; align-items: center; justify-content: center;
  background: #f8f9fb;
  border-radius: 4px;
  padding: 6px;
  min-height: 150px;
}
.featured-card-img img { height: 140px; width: auto; object-fit: contain; max-width: 95px; }

/* Hero Exact Design */
.hero-exact {
  padding: 0;
  min-height: auto;
  background: #eef1f6;
  overflow: hidden;
}
.hero-exact-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.hero-exact-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.hero-hotspot {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  /* debug: background: rgba(255,0,0,0.2); */
}
.hero-hotspot-explore {
  left: 3.5%;
  bottom: 8%;
  width: 16%;
  height: 12%;
}
.hero-hotspot-distributor {
  left: 20.5%;
  bottom: 8%;
  width: 20%;
  height: 12%;
}

@media (max-width: 768px) {
  .hero-hotspot-explore { left: 2%; bottom: 6%; width: 28%; height: 10%; }
  .hero-hotspot-distributor { left: 2%; bottom: 16%; width: 35%; height: 10%; }
}
.featured-card-info { flex: 1; min-width: 0; }
.featured-card-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
}
.featured-subtitle {
  font-size: 0.62rem;
  color: var(--gray-600);
  margin-bottom: 8px;
  line-height: 1.3;
}
.size-jug { font-size: 0.7rem; }
.featured-card .product-card-actions {
  padding: 0 12px 12px;
  display: flex; gap: 6px;
}
.featured-card .product-card-actions .btn { font-size: 0.62rem; padding: 6px 8px; }

/* Distributor Exact Design */
.distributor-exact {
  padding: 0 0 24px;
  background: var(--gray-100);
  overflow: hidden;
}
.distributor-exact-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 0;
}
.distributor-exact-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.distributor-hotspot {
  position: absolute;
  right: 2.5%;
  top: 22%;
  width: 14%;
  height: 56%;
  z-index: 2;
  cursor: pointer;
}

/* Info Boxes Exact Design */
.info-exact {
  padding: 0 0 40px;
  background: var(--gray-100);
}
.info-exact-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 0;
}
.info-exact-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Distributor Banner (legacy inner pages) */
.distributor-banner {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}
.distributor-banner-inner {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.distributor-handshake img {
  width: 280px;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 8px 0 0 8px;
}
.distributor-content { color: var(--white); padding: 24px 0; }
.distributor-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.distributor-content h2 .gold { color: var(--gold); }
.distributor-content p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 16px; }
.distributor-benefits { display: flex; gap: 16px; flex-wrap: wrap; }
.distributor-benefit {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
}
.distributor-benefit svg { color: var(--gold); flex-shrink: 0; }
.btn-apply { padding: 16px 32px; font-size: 0.85rem; white-space: nowrap; margin: 16px 0; }

/* Info Boxes Horizontal */
.info-box-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 24px;
  gap: 16px;
}
.info-box-h .info-box-text { flex: 1; }
.info-box-h h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.3;
}
.info-box-h p { font-size: 0.8rem; color: var(--gray-600); }
.info-box-img {
  flex: 0 0 120px;
  height: 100px;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-box-img img { width: 100%; height: 100%; object-fit: contain; }

.whatsapp-float svg { display: block; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-icon { font-size: 1.8rem; margin-bottom: 8px; color: var(--gold); }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* ===== SECTION HEADINGS ===== */
.section { padding: 70px 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
  text-transform: uppercase;
}
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-label { color: var(--gold-light); }

/* ===== PRODUCT CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.category-card img {
  height: 110px;
  object-fit: contain;
  margin: 0 auto 12px;
  width: auto;
  max-width: 100%;
}
.category-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 24px 16px;
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.why-card p { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ===== FEATURED PRODUCTS ===== */
.featured-slider { position: relative; overflow: hidden; }
.featured-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.product-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card-img {
  padding: 20px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  height: 200px;
}
.product-card-img img { height: 160px; object-fit: contain; }
.product-card-body { padding: 16px; }
.product-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 12px;
  min-height: 40px;
  line-height: 1.3;
}
.size-options { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.size-option {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; cursor: pointer;
}
.size-option input { accent-color: var(--gold); }
.product-card-actions { display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; justify-content: center; padding: 8px 10px; font-size: 0.68rem; }
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 1.2rem;
  color: var(--navy);
  transition: var(--transition);
}
.slider-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }

/* ===== DISTRIBUTOR CTA ===== */
.distributor-cta {
  position: relative;
  background: linear-gradient(rgba(10,26,58,0.85), rgba(10,26,58,0.9)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a2d5a" width="1200" height="400"/><circle cx="900" cy="200" r="150" fill="%23c9a227" opacity="0.1"/></svg>');
  background-size: cover;
  padding: 60px 0;
  color: var(--white);
}
.distributor-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.distributor-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.distributor-cta h2 .gold { color: var(--gold); }
.distributor-cta p { opacity: 0.9; margin-bottom: 20px; }
.distributor-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.distributor-benefit {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
}
.distributor-benefit span { color: var(--gold); font-size: 1.1rem; }

/* ===== INFO BOXES ===== */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-box {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}
.info-box:hover { box-shadow: var(--shadow); }
.info-box-icon {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.info-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-box p { font-size: 0.85rem; color: var(--gray-600); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.footer-contact li span:first-child { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ===== PAGE HEADER ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-hero p { opacity: 0.85; font-size: 1rem; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-size: 0.85rem;
  margin-top: 12px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== PRODUCTS PAGE ===== */
.products-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.sidebar-filter {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.sidebar-filter h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.filter-list li { margin-bottom: 8px; }
.filter-list a {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: var(--transition);
}
.filter-list a:hover, .filter-list a.active {
  background: var(--navy);
  color: var(--white);
}
.products-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail-img {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
}
.product-detail-img img { max-height: 400px; object-fit: contain; }
.product-detail-info h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.product-detail-info .category-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 16px 0;
}
.product-specs { margin: 20px 0; }
.product-specs li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.product-specs li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.qty-selector {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
}
.qty-selector button {
  width: 36px; height: 36px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.qty-selector button:hover { border-color: var(--gold); color: var(--gold); }
.qty-selector input {
  width: 60px; text-align: center;
  padding: 8px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
}

/* ===== CART PAGE ===== */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product img { width: 60px; height: 60px; object-fit: contain; }
.cart-summary {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
  max-width: 400px;
  margin-left: auto;
}
.cart-summary h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}
.cart-summary-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}
.cart-summary-row.total {
  border-top: 2px solid var(--navy);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.login-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--gray-100);
}
.login-card { max-width: 440px; width: 100%; }

/* ===== ABOUT / CONTENT PAGES ===== */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 32px 0 12px;
}
.content-block p { margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; color: var(--gray-600); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.contact-info-item span:first-child { color: var(--gold); font-size: 1.2rem; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 100px; right: 24px;
  padding: 14px 24px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-success { background: #16a34a; }
.toast-error { background: #dc2626; }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .distributor-hotspot { right: 3%; top: 20%; width: 22%; height: 60%; }
  .distributor-banner-inner { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; }
  .distributor-handshake { display: none; }
  .distributor-benefits { justify-content: center; }
  .btn-apply { margin: 0 auto; }
  .info-box-h { flex-direction: column; text-align: center; }
  .featured-card { flex: 0 0 calc(33.333% - 14px); }
  .logo-text { display: none; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 { font-size: 2rem; }
  .hero-subtitle { border-left: none; padding-left: 0; }
  .hero-features { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-products { margin-top: 20px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { flex: 0 0 calc(33.333% - 14px); }
  .info-boxes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar-filter { position: static; }
  .products-grid-page { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .distributor-cta .container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; padding: 12px; }
  .header-actions .login-text { display: none; }
  .hero-content h1 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card { flex: 0 0 calc(50% - 10px); min-width: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .products-grid-page { grid-template-columns: 1fr; }
  .cart-table { font-size: 0.82rem; }
  .cart-product img { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-products img { height: 120px; }
  .product-card { flex: 0 0 100%; }
}
