/* ==========================================================================
   NECKKONIX - Redesigned Cleansol-Inspired E-Commerce Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Cleansol Exact Color Palette */
  --cleansol-navy: #1e2d7d;
  --cleansol-dark-navy: #0e1742;
  --cleansol-cyan: #00badb;
  --cleansol-cyan-hover: #009cb8;
  --cleansol-red: #ee0000;
  --cleansol-text-grey: #677279;
  --cleansol-bg-grey: #f3f5f6;
  --cleansol-border: #e2e8f0;
  --accent-gold: #ffbd00;
  
  /* Radii & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(30, 45, 125, 0.12);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2d3748;
  background-color: #ffffff;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather Sans', sans-serif;
  color: var(--cleansol-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Top Header & Announcement Bar
   ========================================================================== */
.top-bar {
  background: var(--cleansol-dark-navy);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 7px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-bar-btn {
  background: var(--cleansol-cyan);
  color: #ffffff;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.top-bar-btn:hover {
  background: var(--cleansol-cyan-hover);
}

/* Main Navigation Header */
.main-header {
  background: var(--cleansol-navy);
  color: #ffffff;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-flask {
  width: 44px;
  height: 44px;
  color: var(--cleansol-cyan);
  flex-shrink: 0;
}

.logo-text-box {
  display: flex;
  flex-direction: column;
}

.logo-brand-name {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-brand-tagline {
  font-size: 0.65rem;
  color: #a3afef;
  font-style: italic;
  margin-top: 2px;
}

.logo-brand-sub {
  border: 1px solid rgba(163, 175, 239, 0.4);
  color: var(--cleansol-cyan);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 2px;
  margin-top: 3px;
  display: inline-block;
}

/* Header Search Bar */
.header-search {
  flex: 1;
  max-width: 540px;
}

.search-box {
  display: flex;
  background: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  font-size: 0.9rem;
  outline: none;
  color: #1e293b;
}

.search-btn {
  background: var(--cleansol-cyan);
  color: #ffffff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.search-btn:hover {
  background: var(--cleansol-cyan-hover);
}

.header-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #a3afef;
  margin-top: 4px;
}

.header-sub-link:hover {
  color: #ffffff;
}

/* Header User Actions */
.header-user-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}

.cart-icon-box {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--cleansol-cyan);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Country / Region Currency Selector */
.country-currency-selector {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  user-select: none;
}

.country-currency-selector:hover {
  background: rgba(255, 255, 255, 0.1);
}

.currency-label {
  font-size: 0.72rem;
  color: #a3afef;
  line-height: 1.1;
  font-weight: 400;
}

.currency-value {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.currency-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #ffffff;
  color: #1e293b;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  width: 230px;
  z-index: 1000;
  display: none;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.currency-dropdown-menu.show {
  display: block;
  animation: fadeInDown 0.2s ease forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.currency-option {
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-option:hover,
.currency-option.active {
  background: #f1f5f9;
  color: var(--cleansol-navy);
}

/* Main Category Navigation Bar */
.category-nav-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--cleansol-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.category-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 12px 0;
}

.category-nav-links a {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cleansol-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 0;
  position: relative;
}

.category-nav-links a:hover,
.category-nav-links a.active {
  color: var(--cleansol-cyan);
}

.category-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cleansol-cyan);
}

/* ==========================================================================
   HERO BANNER - NECKKONIX Header & Banner Image Integration
   ========================================================================== */
.hero-banner {
  background: radial-gradient(circle at 60% 45%, #004ecc 0%, #041852 65%, #020b29 100%);
  color: #ffffff;
  position: relative;
  padding: 55px 0 145px 0;
  overflow: hidden;
}

/* DNA Molecular Structure Watermarks */
.dna-watermark-left {
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 280px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.dna-watermark-right {
  position: absolute;
  top: 0;
  right: -20px;
  height: 100%;
  width: 280px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.text-gold {
  color: var(--accent-gold);
}

.hero-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 0.95rem;
  color: #e2e8f0;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.hero-cta:hover {
  background: #ffffff;
  color: var(--cleansol-navy);
}

.stats-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}

/* ==========================================================================
   CIRCULAR CATEGORIES SHOWCASE - Cleansol Round Avatars
   ========================================================================== */
.section-padding {
  padding: 45px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  /* border-bottom: 2px solid #f1f5f9; */
  padding-bottom: 10px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cleansol-navy);
}

.view-all-link {
  color: var(--cleansol-cyan);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all-link:hover {
  color: var(--cleansol-navy);
}

/* Circular Subcategories Grid */
.circle-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.circle-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  group: true;
}

.circle-avatar-box {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--cleansol-bg-grey);
  border: 3px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.circle-cat-item:hover .circle-avatar-box {
  border-color: var(--cleansol-cyan);
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 186, 219, 0.2);
}

.circle-avatar-box svg {
  width: 60px;
  height: 60px;
  color: var(--cleansol-navy);
}

.circle-cat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.25;
}

.circle-cat-item:hover .circle-cat-label {
  color: var(--cleansol-cyan);
}

/* ==========================================================================
   PRODUCT CARDS GRID - Cleansol Style
   ========================================================================== */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cleansol-prod-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}

.cleansol-prod-card:hover {
  border-color: transparent;
  box-shadow: none;
}

.prod-img-wrapper {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 12px;
  padding: 0;
}

.prod-img-wrapper .prod-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.discount-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff0000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 6px;
  z-index: 2;
}

.prod-info-wrapper {
  display: flex;
  flex-direction: column;
}

.prod-brand {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8a9297;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.prod-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e2d7d;
  line-height: 1.4;
  margin-bottom: 12px;
  height: 3.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.prod-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.price-sale {
  color: #ee0000;
  font-size: 1.05rem;
}

.price-was {
  color: #8a9297;
  font-size: 0.75rem;
  text-decoration: line-through;
}

.prod-stars {
  font-size: 0.75rem;
  color: #8a9297;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.prod-stars .stars {
  color: #ffbd00;
  letter-spacing: 2px;
}

.prod-stock {
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.in-stock {
  color: #008a00;
}
.in-stock .stock-dot {
  background-color: #008a00;
}

.sold-out {
  color: #8a9297;
}
.sold-out .stock-dot {
  background-color: #8a9297;
}

/* ==========================================================================
   FEATURED SPLIT BANNER CARDS - Swimming Pool, Laundry, Auto Care
   ========================================================================== */
.split-banner-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--cleansol-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 40px;
}

.pool-banner-wrapper {
  border: 3px solid var(--cleansol-cyan);
  border-radius: 0;
  gap: 0;
  align-items: stretch;
}

.laundry-banner-wrapper {
  border: 3px solid #1e3a8a; /* Royal blue border */
  border-radius: 0;
  gap: 0;
  align-items: stretch;
}

.autocare-banner-wrapper {
  border: 3px solid var(--cleansol-dark-navy);
  border-radius: 0;
  gap: 0;
  align-items: stretch;
}

.split-banner-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  position: relative;
  padding: 0;
}

.sidebar-text-content {
  padding: 32px 24px 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.split-banner-sidebar.cyan {
  background: var(--cleansol-cyan);
}

.split-banner-sidebar.blue {
  background: #1e3a8a; /* Changed to royal blue */
}

.split-banner-sidebar.blue .btn-explore-sidebar {
  color: #1e3a8a; /* Button text matches sidebar */
}

.split-banner-sidebar.dark-navy {
  background: var(--cleansol-dark-navy);
}

.split-banner-sidebar.dark-navy .btn-explore-sidebar {
  color: var(--cleansol-dark-navy);
}

.sidebar-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.sidebar-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-explore-sidebar {
  display: inline-block;
  background: #ffffff;
  color: var(--cleansol-cyan);
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 800;
  font-size: 0.9rem;
  align-self: flex-start;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-explore-sidebar:hover {
  background: #f1f5f9;
}

.sidebar-photo-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  margin-top: auto;
  display: block;
}

.split-banner-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
  background: #ffffff;
}

/* ==========================================================================
   VALUE PROPOSITION & WHY CHOOSE US
   ========================================================================== */
.value-props-bar {
  background: #ffffff;
  border-top: 1px solid var(--cleansol-border);
  border-bottom: 1px solid var(--cleansol-border);
  padding: 30px 0;
  margin-bottom: 40px;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 186, 219, 0.1);
  color: var(--cleansol-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-prop-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cleansol-navy);
}

.value-prop-sub {
  font-size: 0.78rem;
  color: var(--cleansol-text-grey);
}

/* 4 Column Info Section */
.why-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.why-card-col {
  background: var(--cleansol-bg-grey);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid var(--cleansol-border);
}

.why-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cleansol-navy);
  margin-bottom: 8px;
}

.why-col-text {
  font-size: 0.84rem;
  color: var(--cleansol-text-grey);
  line-height: 1.5;
  margin-bottom: 12px;
}

.why-col-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cleansol-cyan);
}

/* Trust Badges Bar */
.trust-badges-bar {
  background: #ffffff;
  padding: 24px 0;
  border-top: 1px solid var(--cleansol-border);
  border-bottom: 1px solid var(--cleansol-border);
  text-align: center;
  margin-bottom: 40px;
}

.trust-badges-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--cleansol-navy);
  padding: 8px 16px;
  background: var(--cleansol-bg-grey);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FOOTER - Light Grey Cleansol Style
   ========================================================================== */
.cleansol-footer {
  background: var(--cleansol-bg-grey);
  color: var(--cleansol-text-grey);
  padding: 50px 0 20px 0;
  border-top: 1px solid var(--cleansol-border);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col-h {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cleansol-navy);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
}

.footer-menu-links a:hover {
  color: var(--cleansol-cyan);
}

.footer-bottom-line {
  border-top: 1px solid #cbd5e1;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748b;
}

/* Cart Drawer Overlay */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #ffffff;
  z-index: 2001;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 16px 20px;
  background: var(--cleansol-navy);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--cleansol-border);
  background: var(--cleansol-bg-grey);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
}

.toast-msg {
  background: var(--cleansol-navy);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
/* ==========================================================================
   TRUST & METRICS SECTIONS (Custom CSS replacing Tailwind)
   ========================================================================== */
.trust-metrics-section {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.trust-grid-4col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .trust-grid-4col {
    grid-template-columns: repeat(4, 1fr);
  }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-40 { margin-bottom: 40px; }

/* Metrics Row */
.trust-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.metric-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.metric-icon-circle.border-navy {
  border: 3px solid var(--cleansol-dark-navy);
  color: var(--cleansol-dark-navy);
}
.metric-icon-circle.bg-navy {
  background: var(--cleansol-dark-navy);
  color: #ffffff;
}
.metric-icon-circle.border-cyan {
  border: 3px solid var(--cleansol-cyan);
  color: var(--cleansol-cyan);
}
.metric-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cleansol-dark-navy);
}

.trust-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 48px;
}

/* Marketplaces Row */
.marketplaces-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .marketplaces-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .marketplace-item {
    flex: 0 0 calc(33.333% - 22px);
    max-width: calc(33.333% - 22px);
  }
}

.marketplace-item {
  display: flex;
  flex-direction: column;
}
.market-logo {
  margin-bottom: 16px;
}
.amazon-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
}
.flipkart-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0071dc;
  letter-spacing: -0.5px;
}
.fk-f {
  color: #ffc200;
  font-size: 1.1rem;
}
.indiamart-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f73859;
  display: flex;
  align-items: center;
}
.im-icon { margin-right: 4px; font-size: 1.5rem; }
.meesho-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f43397;
  letter-spacing: -0.5px;
}

.market-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cleansol-dark-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.market-desc {
  font-size: 0.7rem;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}
.market-link {
  font-size: 0.7rem;
  color: var(--cleansol-cyan);
  font-weight: 500;
  text-decoration: underline;
}

/* Support Features Row */
.support-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.support-icon {
  color: var(--cleansol-dark-navy);
  margin-top: 4px;
}
.support-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cleansol-dark-navy);
  margin-bottom: 4px;
}
.support-desc {
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.4;
}

/* Logistics Row */
.logistics-section {
  text-align: left;
  margin-bottom: 24px;
}
.logistics-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cleansol-dark-navy);
  margin-bottom: 32px;
}
.logistics-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.logistics-logos span { display: inline-block; }
.log-delhivery { font-weight: 900; color: #1f2937; font-size: 1.1rem; letter-spacing: -1px; }
.log-amazon { font-weight: 700; color: #111827; font-size: 1.25rem; letter-spacing: -1px; }
.log-dtdc { font-weight: 800; color: #dc2626; font-size: 1.1rem; font-style: italic; letter-spacing: -0.5px; }
.log-bluedart { font-weight: 900; color: #0033a0; font-size: 1.1rem; font-style: italic; letter-spacing: -1px; }
.log-xpressbees { font-weight: 700; color: #1f2937; font-size: 1.1rem; font-style: italic; letter-spacing: -1px; }
.log-ekart { font-weight: 700; color: #0066cc; font-size: 1.25rem; letter-spacing: -0.5px; }
.log-indiapost { font-weight: 700; color: #dc2626; font-size: 1.1rem; letter-spacing: -1px; }

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .circle-categories-grid,
  .product-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .split-banner-wrapper {
    grid-template-columns: 1fr;
  }
  
  .split-banner-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .circle-categories-grid,
  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-nav-links {
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .value-props-grid,
  .why-grid-4col,
  .footer-columns-grid {
    grid-template-columns: 1fr;
  }
}
