/* ============================================================
   MPS TISSUES — HIGH-CONVERSION E-COMMERCE STYLESHEET
   Aesthetic: Bold SA commercial · clean & trustworthy · mobile-first
============================================================ */

:root {
  --navy: #0B2B4F;
  --navy-dark: #071e38;
  --navy-mid: #12365e;
  --gold: #D4AF37;
  --gold-dark: #b18f2a;
  --gold-light: #f0d060;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-grey: #f1f5f9;
  --border: #e2e8f0;
  --text: #1e2a3e;
  --text-muted: #64748b;
  --green: #16a34a;
  --green-light: #dcfce7;
  --red-light: #fef2f2;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --shadow-sm: 0 1px 3px rgba(11, 43, 79, 0.06), 0 1px 2px rgba(11, 43, 79, 0.04);
  --shadow-md: 0 4px 16px rgba(11, 43, 79, 0.1);
  --shadow-lg: 0 12px 32px rgba(11, 43, 79, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--gold);
  font-family: 'Syne', sans-serif;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 3px;
}

/* ============================================================
   TOP BANNER
============================================================ */
.top-banner {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: white;
  text-align: center;
  padding: 0.6rem 3rem;
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
}

.top-banner .container {
  position: relative;
}

.top-banner strong {
  color: var(--gold-light);
}

.banner-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 1.5s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4)
  }
}

.banner-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

.banner-close:hover {
  color: white;
}

/* ============================================================
   HEADER & NAVIGATION
============================================================ */
header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  white-space: nowrap;
}

.logo-mark {
  color: var(--navy);
}

.logo-word {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--light-grey);
}

.nav-links a.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.wa-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wa-green);
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  border-radius: 40px;
  transition: all var(--transition);
  white-space: nowrap;
}

.wa-nav-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.wa-nav-btn i {
  font-size: 1rem;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--navy);
  padding: 0.4rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.cart-icon:hover {
  background: var(--light-grey);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 2px 5px;
  min-width: 18px;
  text-align: center;
  font-family: 'Syne', sans-serif;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  background: var(--navy);
  color: white;
  border: none;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
  border-radius: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Syne', sans-serif;
  border-radius: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

.btn-wa {
  background: var(--wa-green);
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-wa.large {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.btn-call {
  background: var(--off-white);
  color: var(--navy);
  border: 2px solid var(--border);
  padding: 0.9rem 1.6rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Syne', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}

.btn-call:hover {
  border-color: var(--navy);
  background: var(--light-grey);
}

/* ============================================================
   SECTION HELPERS
============================================================ */
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(140deg, #f0f6ff 0%, #ffffff 60%, #fefdf7 100%);
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(11, 43, 79, 0.04) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Trust pills */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(11, 43, 79, 0.06);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

.trust-pill i {
  color: var(--gold);
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-badge i {
  color: var(--green);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-visual-inner {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.hero-stat-card.top-left {
  top: -1rem;
  left: -2rem;
  animation-delay: 0s;
}

.hero-stat-card.bottom-right {
  bottom: -1rem;
  right: -1.5rem;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   PROOF BAR
============================================================ */
.proof-bar {
  background: var(--navy);
  padding: 0.9rem 0;
  overflow: hidden;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.proof-item i {
  color: var(--gold);
}

.proof-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   PRODUCTS SECTION
============================================================ */
.products-section {
  padding: 4rem 0;
}

/* Tab Filter */
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: var(--light-grey);
  color: var(--text);
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.tab-btn:hover {
  background: rgba(11, 43, 79, 0.1);
  color: var(--navy);
}

.tab-btn.active {
  background: var(--navy);
  color: white;
}

/* Products Grid */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  padding: 1.2rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.product-card.hidden {
  display: none;
}

/* Badges */
.product-badge-wrap {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}

.badge-premium {
  background: rgba(11, 43, 79, 0.08);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}

.badge-saver {
  background: var(--light-grey);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}

.badge-best {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
}

.badge-popular {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Product image */
.product-img {
  background: var(--light-grey);
  height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.1rem;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.img-overlay {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
}

.overlay-tag {
  background: rgba(11, 43, 79, 0.9);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.overlay-tag i {
  color: var(--gold);
}

/* Product content */
.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.pack-size {
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(11, 43, 79, 0.06);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin: 0.4rem 0;
  color: var(--navy);
}

.per-roll {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.per-roll strong {
  color: var(--green);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.savings-pill {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.product-perks {
  margin-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-perks li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-perks li i {
  color: var(--green);
  font-size: 0.75rem;
}

/* Qty selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.7rem 0;
  flex-shrink: 0;
}

.qty-selector label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light-grey);
  border: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: all var(--transition);
  user-select: none;
}

.qty-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.qty-input {
  width: 52px;
  text-align: center;
  padding: 0.4rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  font-family: inherit;
}

.qty-input:focus {
  outline: none;
  border-color: var(--navy);
}

.btn-cart {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  margin-bottom: 0.5rem;
}

.btn-cart:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.order-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--wa-green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem;
  border-radius: 30px;
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
  margin-top: auto;
}

.order-wa-link:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: var(--wa-green);
}

.order-wa-link i {
  font-size: 1rem;
}

/* No results */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ============================================================
   SAVINGS TABLE
============================================================ */
.savings-table-wrap {
  background: var(--light-grey);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin: 1rem 0 3rem;
}

.savings-table {
  overflow-x: auto;
  margin-top: 1rem;
}

.savings-table-header,
.savings-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 1rem;
  padding: 0.7rem 1rem;
  align-items: center;
}

.savings-table-header {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.savings-row {
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

.savings-row:last-child {
  border-bottom: none;
}

.savings-row.highlight {
  background: rgba(212, 175, 55, 0.08);
  border-radius: var(--radius);
  font-weight: 600;
}

.save-pill {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}

.save-pill.muted {
  background: rgba(11, 43, 79, 0.06);
  color: var(--text-muted);
}

/* ============================================================
   BULK / WHOLESALE SECTION
============================================================ */
.bulk-section {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  margin: 2rem 0 3rem;
  overflow: hidden;
  position: relative;
}

.bulk-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bulk-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.bulk-text {
  padding: 3.5rem;
}

.bulk-text .section-eyebrow {
  color: var(--gold);
}

.bulk-text h2 {
  color: white;
  margin-bottom: 1rem;
}

.bulk-text>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.bulk-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.bulk-benefits li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.bulk-benefits li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.bulk-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.bulk-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-style: italic;
  margin-bottom: 0;
}

.bulk-visual {
  position: relative;
  min-height: 320px;
}

.bulk-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bulk-stat-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.bulk-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.bulk-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(11, 43, 79, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--navy);
  color: var(--gold);
}

.why-card h4 {
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
}

/* ============================================================
   WHO WE SUPPLY
============================================================ */
.who-we-supply {
  padding: 4rem 0;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.supply-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.supply-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
  background: white;
}

.supply-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.supply-card h4 {
  margin-bottom: 0.5rem;
}

.supply-card p {
  font-size: 0.88rem;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.review-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.8rem;
}

.review-stars i {
  color: var(--gold);
  font-size: 1.1rem;
}

.review-stars span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-card>p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   TRUST SECTION
============================================================ */
.trust-section {
  padding: 3rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.trust-block {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
}

.trust-block-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.trust-block h4 {
  margin-bottom: 0.6rem;
}

.trust-block>p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.delivery-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.delivery-areas span {
  background: white;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--navy);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}

.payment-badge {
  background: white;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
}

.payment-badge.dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.payment-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 4rem 0;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--navy);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  transition: all 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.4rem 1.2rem;
}

/* ============================================================
   STICKY WA BAR
============================================================ */
.sticky-wa-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.85rem 1rem;
  background: var(--wa-green);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.sticky-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
}

.sticky-wa-link i {
  font-size: 1.3rem;
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--wa-green);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 80;
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* ============================================================
   CART MODAL
============================================================ */
.cart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 43, 79, 0.55);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.cart-modal.open {
  display: flex;
}

.cart-content {
  background: white;
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.cart-header h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-weight: 700;
}

.close-cart:hover {
  background: var(--light-grey);
  color: var(--navy);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.cart-item-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cart-item-price {
  text-align: right;
  flex-shrink: 0;
}

.cart-item-price strong {
  display: block;
  font-size: 1rem;
  font-family: 'Syne', sans-serif;
  color: var(--navy);
}

.remove-item {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 2px;
  transition: color var(--transition);
}

.remove-item:hover {
  color: #dc2626;
}

#cartTotal {
  text-align: right;
  padding: 1rem 0 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  border-top: 2px solid var(--border);
  margin-top: 0.5rem;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}

.checkout-btn {
  width: 100%;
  justify-content: center;
}

.cart-wa-btn {
  width: 100%;
  justify-content: center;
}

.cart-trust {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.cart-trust span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-trust i {
  color: var(--green);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.8rem;
}

.footer-logo span {
  color: var(--gold);
}

.footer-brand>p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-flags {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.7rem;
}

.footer-contact li i {
  color: var(--gold);
  width: 14px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact li a:hover {
  color: var(--gold);
}

.footer-payments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

/* ============================================================
   FADE-IN ANIMATIONS
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    display: none;
  }

  .bulk-inner {
    grid-template-columns: 1fr;
  }

  .bulk-visual {
    min-height: 240px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width:768px) {
  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .nav-links.mobile-open a {
    padding: 0.9rem 2rem;
    border-bottom: 1px solid var(--border);
  }

  .hamburger {
    display: flex;
  }

  .wa-nav-btn span {
    display: none;
  }

  .hero {
    padding: 4rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .top-banner {
    padding: 0.6rem 2rem;
    font-size: 0.75rem;
  }

  .proof-bar-inner {
    gap: 1rem;
  }

  .proof-divider {
    display: none;
  }

  .savings-table-header,
  .savings-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    font-size: 0.78rem;
    gap: 0.4rem;
    padding: 0.6rem 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sticky-wa-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .bulk-text {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width:480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-trust-bar {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  .products-container {
    grid-template-columns: 1fr;
  }

  .savings-table-header,
  .savings-row {
    grid-template-columns: repeat(5, 1fr);
    font-size: 0.68rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-wa,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .bulk-cta-group {
    flex-direction: column;
  }

  .whatsapp-float {
    bottom: 80px;
  }
}

/* iOS input zoom fix */
@media (max-width:768px) {

  input[type="number"],
  input[type="text"],
  select,
  textarea {
    font-size: 16px !important;
  }
}