/* ================================================
   ULTRA FOAM LLC – COMPLETE REDESIGN
   Bold · Professional · Mobile-First
   ================================================ */

/* --- FONTS & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --teal:        #0A66C2;
  --teal-dark:   #084e99;
  --teal-glow:   rgba(10,102,194,.3);
  --navy:        #0D1B2A;
  --navy-light:  #132236;
  --white:       #ffffff;
  --off-white:   #f0f6ff;
  --foam-blue:   #29B6F6;
  --yellow:      #FFE135;
  --yellow-dark: #e6c800;
  --green:       #39D353;
  --pink:        #FF4FCB;
  --orange:      #FF7A2F;

  /* Neutrals */
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;

  /* Shadows */
  --glow-teal:   0 0 20px rgba(10,102,194,.5);
  --glow-yellow: 0 0 20px rgba(255,225,53,.5);
  --shadow-card: 0 8px 32px rgba(0,0,0,.18);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.25);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-price: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================
   SCROLL PROGRESS
   ================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--yellow), var(--green));
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: #000000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: #000000;
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(10,102,194,.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 100px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -.5px;
}
.logo-tag {
  font-size: .65rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  padding: 7px 13px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); background: rgba(10,102,194,.1); }

.nav-order-btn {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 900;
  background: var(--teal);
  color: var(--navy) !important;
  padding: 9px 18px !important;
  border-radius: 10px !important;
  box-shadow: var(--glow-teal);
  transition: var(--transition) !important;
}
.nav-order-btn:hover {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  box-shadow: var(--glow-yellow) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--teal);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}
.btn-teal {
  background: var(--teal);
  color: var(--navy);
  box-shadow: var(--glow-teal);
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px) scale(1.02); box-shadow: 0 0 30px rgba(10,102,194,.6); }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--glow-yellow);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px) scale(1.02); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--navy); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 0 20px rgba(37,211,102,.4);
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); }

.btn-lg { font-size: 1.15rem; padding: 17px 36px; border-radius: var(--r-lg); }
.btn-full { width: 100%; }
.btn-sm  { font-size: .85rem; padding: 9px 18px; border-radius: 8px; }

/* Ripple */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: rippleAnim .5s linear forwards;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(5); opacity: 0; } }

/* ================================================
   SECTION UTILITY
   ================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.badge-teal  { background: rgba(10,102,194,.15); color: var(--teal); border: 1px solid rgba(10,102,194,.3); }
.badge-yellow{ background: rgba(255,225,53,.15); color: var(--yellow); border: 1px solid rgba(255,225,53,.3); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
}
.section-title .hl { color: var(--teal); }
.section-title .hl-y { color: var(--yellow); }

.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin-top: 10px;
}

/* ================================================
   PAGE HEADER BANNER (inner pages)
   ================================================ */
.page-header {
  padding: 120px 0 60px;
  background: #0a1622;
  border-bottom: 1px solid rgba(10,102,194,.15);
  text-align: center;
}
.page-header .badge { margin-bottom: 14px; }
.page-header p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* ================================================
   CARDS
   ================================================ */
.card {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(10,102,194,.2);
  border-color: rgba(10,102,194,.4);
}

/* ================================================
   WAVE DIVIDERS
   ================================================ */
.wave { line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 100%; }

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 90px; right: 20px;
  z-index: 950;
  display: flex;
  align-items: center;
}
.wa-pulse { position: absolute; width: 56px; height: 56px; border-radius: 50%; background: rgba(37,211,102,.3); animation: waPulse 2.2s ease-out infinite; }
.wa-pulse-2 { animation-delay: 1.1s; }
@keyframes waPulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2.3);opacity:0} }

.wa-link {
  position: relative;
  z-index: 2;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  text-decoration: none;
}
.wa-link:hover { transform: scale(1.15) rotate(-6deg); box-shadow: 0 10px 36px rgba(37,211,102,.6); color: var(--white); }

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--gray-900);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
  box-shadow: var(--shadow-card);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--gray-900);
  border-right: none;
}
.wa-float:hover .wa-tooltip,
.wa-float.show-tip .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-size: .95rem;
  cursor: pointer;
  box-shadow: var(--glow-teal);
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--yellow); transform: translateY(-2px); }

/* ================================================
   HOME PAGE – HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #061220 0%, var(--navy) 50%, #0a1f2e 100%);
}
.hero-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,102,194,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-bg-glow2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,225,53,.1) 0%, transparent 70%);
  bottom: 0; left: -80px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 120px 0 80px;
  width: 100%;
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: clamp(.85rem, 1.5vw, 1.1rem);
  font-weight: 900;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.hero-title .hl { 
  color: var(--teal); 
  text-shadow: 0 0 40px rgba(10,102,194,.6), 0 4px 20px rgba(0,0,0,.5); 
  background: linear-gradient(180deg, #29B6F6 0%, #0A66C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .hl-y { color: var(--yellow); text-shadow: 0 0 24px rgba(255,225,53,.5); }
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(.85rem, 1.5vw, 1.1rem);
  font-weight: 900;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-sub strong { color: var(--white); }
.hero-sub .hl { color: var(--teal); -webkit-text-fill-color: var(--teal); background: none; }
.hero-sub .hl-y { color: var(--yellow); }
.hero-sub-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-sub-desc strong { color: var(--white); }
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .87rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}
.hero-trust-item i { color: var(--teal); }

.hero-img-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-card {
  position: relative;
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.25);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), var(--glow-teal);
}
.hero-img-card img {
  height: 420px;
  width: 100%;
  object-fit: contain;
  padding: 16px;
  background: #0a1622;
}
.hero-price-tag {
  position: absolute;
  top: 20px; right: -10px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: var(--glow-yellow);
  animation: floatTag 3s ease-in-out infinite;
}
@keyframes floatTag { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-bottom-tag {
  position: absolute;
  bottom: 20px; left: -10px;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .9rem;
  padding: 9px 16px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 7px;
  box-shadow: var(--glow-teal);
  animation: floatTag 3s ease-in-out infinite .8s;
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(10,102,194,.25);
  animation: floatPart linear infinite;
}
@keyframes floatPart {
  0%   { transform:translateY(100vh) scale(0); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:.5; }
  100% { transform:translateY(-40px) scale(1); opacity:0; }
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll i { animation: bounce 2s infinite; color: var(--teal); }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ================================================
   MARQUEE STRIP
   ================================================ */
.marquee-strip {
  background: var(--teal);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 18s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .9rem;
  color: var(--navy);
  padding: 0 28px;
}
.marquee-track span i { margin-right: 6px; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ================================================
   PRODUCT CARDS (shop page + home preview)
   ================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10,102,194,.22);
  border-color: rgba(10,102,194,.4);
}
.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0d1b2a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .04em;
}
.product-tag-yellow { background: var(--yellow); }

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.product-desc {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.product-price {
  font-family: var(--font-price);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  text-shadow: 0 0 16px rgba(10,102,194,.4);
  margin-top: 4px;
}
.product-price small {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-left: 4px;
}
.product-qty {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.product-footer { margin-top: auto; padding-top: 14px; }

/* In-stock / low stock indicator */
.stock-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--green);
}
.stock-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: stockPulse 1.8s ease infinite;
}
.stock-low { color: var(--orange); }
.stock-low::before { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
@keyframes stockPulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ================================================
   BUNDLES / DEALS
   ================================================ */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.bundle-card {
  background: var(--navy-light);
  border: 2px solid rgba(10,102,194,.2);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.bundle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  opacity: 0;
  transition: opacity .3s;
}
.bundle-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(10,102,194,.2); border-color: var(--teal); }
.bundle-card:hover::before { opacity: 1; }
.bundle-card.featured {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(255,225,53,.2);
}
.bundle-card.featured::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); opacity: 1; }

.bundle-popular {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bundle-buckets {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
}
.bundle-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.bundle-price {
  font-family: var(--font-price);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  text-shadow: 0 0 20px rgba(10,102,194,.5);
  line-height: 1;
}
.bundle-price-alt {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  font-weight: 600;
}
.bundle-save {
  display: inline-block;
  background: rgba(57,211,83,.15);
  color: var(--green);
  border: 1px solid rgba(57,211,83,.3);
  font-size: .74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 10px;
}
.bundle-card .btn { margin-top: 18px; }

/* payment methods note */
.payment-note {
  background: rgba(10,102,194,.07);
  border: 1px solid rgba(10,102,194,.2);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.payment-note i { font-size: 1.5rem; color: var(--teal); flex-shrink: 0; }
.payment-note p { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0; }
.payment-note strong { color: var(--teal); }

/* ================================================
   ORDER FORM
   ================================================ */
.order-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.order-form-card {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.2);
  border-radius: var(--r-xl);
  padding: 40px;
}
.form-section-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 24px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-title:first-child { margin-top: 0; }
.form-section-title::before {
  content: '';
  width: 4px; height: 18px;
  background: var(--teal);
  border-radius: 3px;
  box-shadow: 0 0 8px var(--teal);
}

.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  font-size: .83rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.required { color: var(--teal); }
.optional  { color: rgba(255,255,255,.35); font-weight: 500; font-size: .78rem; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--white);
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 13px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(10,102,194,.07);
  box-shadow: 0 0 0 3px rgba(10,102,194,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A66C2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-color: rgba(255,255,255,.05); padding-right: 42px; }
.form-group select option { background: var(--navy-light); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Product qty rows */
.product-qty-list { display: flex; flex-direction: column; gap: 12px; }
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 14px;
}
.qty-name {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  flex: 1;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 30px; height: 30px;
  background: rgba(10,102,194,.15);
  border: 1px solid rgba(10,102,194,.3);
  border-radius: 7px;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--teal); color: var(--navy); }
.qty-num {
  width: 36px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  background: none;
  border: none;
  outline: none;
}

/* Order summary sidebar */
.order-summary {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.2);
  border-radius: var(--r-xl);
  padding: 30px 24px;
  position: sticky;
  top: 90px;
}
.order-summary h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.summary-line span:last-child { font-weight: 700; color: var(--white); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 8px;
}
.summary-total span:first-child { font-family: var(--font-head); font-size: 1rem; font-weight: 900; color: var(--white); }
.summary-total span:last-child  { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--teal); text-shadow: 0 0 14px rgba(10,102,194,.4); }
.summary-note { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 10px; line-height: 1.5; }

/* Form success */
.form-success-wrap {
  text-align: center;
  padding: 48px 24px;
  display: none;
}
.success-icon-big { font-size: 4rem; color: var(--teal); text-shadow: var(--glow-teal); margin-bottom: 16px; animation: successPop .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes successPop { from{transform:scale(0)} to{transform:scale(1)} }
.form-success-wrap h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.form-success-wrap p { color: rgba(255,255,255,.6); margin-bottom: 28px; }

/* ================================================
   CONTACT BUTTONS PAGE
   ================================================ */
.contact-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-btn-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--navy-light);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-btn-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s;
}
.contact-btn-card:hover { transform: translateY(-3px) scale(1.02); }
.contact-btn-card:hover::before { opacity: 1; }
.contact-btn-card .cbc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cbc-call   { background: rgba(10,102,194,.15); border-color: rgba(10,102,194,.3); }
.cbc-call   .cbc-icon { background: rgba(10,102,194,.2); color: var(--teal); }
.cbc-call:hover { border-color: var(--teal); box-shadow: 0 8px 30px rgba(10,102,194,.25); }
.cbc-text   { background: rgba(57,211,83,.08); border-color: rgba(57,211,83,.2); }
.cbc-text   .cbc-icon { background: rgba(57,211,83,.15); color: var(--green); }
.cbc-text:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(57,211,83,.2); }
.cbc-wa     { background: rgba(37,211,102,.08); border-color: rgba(37,211,102,.2); }
.cbc-wa     .cbc-icon { background: rgba(37,211,102,.15); color: #25d366; }
.cbc-wa:hover  { border-color: #25d366; box-shadow: 0 8px 30px rgba(37,211,102,.25); }
.cbc-ig     { background: rgba(255,79,203,.08); border-color: rgba(255,79,203,.2); }
.cbc-ig     .cbc-icon { background: rgba(255,79,203,.15); color: var(--pink); }
.cbc-ig:hover  { border-color: var(--pink); box-shadow: 0 8px 30px rgba(255,79,203,.2); }
.cbc-tt     { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.cbc-tt     .cbc-icon { background: rgba(255,255,255,.08); color: var(--white); }
.cbc-tt:hover  { border-color: var(--white); box-shadow: 0 8px 30px rgba(255,255,255,.1); }
.cbc-email  { background: rgba(255,122,47,.08); border-color: rgba(255,122,47,.2); }
.cbc-email  .cbc-icon { background: rgba(255,122,47,.15); color: var(--orange); }
.cbc-email:hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(255,122,47,.2); }

.contact-info-box {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.2);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 700px;
  margin: 32px auto 0;
}
.contact-info-box h3 { font-family: var(--font-head); font-weight: 900; color: var(--teal); margin-bottom: 16px; }
.contact-detail-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .95rem;
  color: rgba(255,255,255,.75);
}
.contact-detail-row:last-child { border-bottom: none; }
.contact-detail-row i { color: var(--teal); width: 22px; text-align: center; }

/* ================================================
   DELIVERY / PICKUP PAGE
   ================================================ */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.delivery-card {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.18);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  text-align: center;
  transition: var(--transition);
}
.delivery-card:hover { transform: translateY(-5px); box-shadow: 0 14px 48px rgba(10,102,194,.18); border-color: var(--teal); }
.delivery-icon {
  width: 72px; height: 72px;
  background: rgba(10,102,194,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--teal);
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(10,102,194,.25);
}
.delivery-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.delivery-card p  { font-size: .93rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.delivery-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  text-align: left;
}
.delivery-detail-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.delivery-detail-item i { color: var(--teal); width: 18px; }
.delivery-zones {
  background: rgba(10,102,194,.06);
  border: 1px solid rgba(10,102,194,.18);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-top: 40px;
}
.delivery-zones h4 { font-family: var(--font-head); font-weight: 900; color: var(--teal); margin-bottom: 16px; font-size: 1rem; }
.zones-list { display: flex; flex-wrap: wrap; gap: 10px; }
.zone-pill {
  background: rgba(10,102,194,.12);
  border: 1px solid rgba(10,102,194,.25);
  color: var(--teal);
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}

/* ================================================
   ADMIN PAGE
   ================================================ */
.admin-login-wrap {
  max-width: 420px;
  margin: 0 auto;
}
.admin-login-card {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.25);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  text-align: center;
}
.admin-login-card h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.admin-login-card p { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 28px; }

.admin-dashboard { display: none; }
.admin-dashboard.visible { display: block; }

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.admin-stat-card {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.15);
  border-radius: var(--r-md);
  padding: 22px 20px;
}
.admin-stat-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.admin-stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  text-shadow: 0 0 16px rgba(10,102,194,.4);
}

.admin-table-wrap {
  background: var(--navy-light);
  border: 1px solid rgba(10,102,194,.15);
  border-radius: var(--r-lg);
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.admin-table th {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(10,102,194,.15);
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 16px;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: top;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(10,102,194,.04); }

.status-pill {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.status-new      { background: rgba(255,225,53,.15); color: var(--yellow); border: 1px solid rgba(255,225,53,.3); }
.status-prep     { background: rgba(255,122,47,.15); color: var(--orange); border: 1px solid rgba(255,122,47,.3); }
.status-done     { background: rgba(57,211,83,.15);  color: var(--green);  border: 1px solid rgba(57,211,83,.3); }
.status-canceled { background: rgba(255,60,60,.12);  color: #ff6060;       border: 1px solid rgba(255,60,60,.25); }

/* Inventory table */
.inv-bar-wrap { display: flex; align-items: center; gap: 10px; }
.inv-bar { height: 7px; border-radius: 4px; background: rgba(255,255,255,.1); flex: 1; overflow: hidden; }
.inv-bar-fill { height: 100%; border-radius: 4px; background: var(--teal); transition: width .8s ease; box-shadow: 0 0 8px rgba(10,102,194,.5); }
.inv-bar-fill.low  { background: var(--orange); box-shadow: 0 0 8px rgba(255,122,47,.5); }
.inv-bar-fill.crit { background: #ff4444; box-shadow: 0 0 8px rgba(255,68,68,.5); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #000000;
  border-top: 1px solid rgba(10,102,194,.12);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-socials a:hover { background: var(--teal); color: var(--navy); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in      { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.fade-in-left { opacity:0; transform:translateX(-36px); transition:opacity .6s ease, transform .6s ease; }
.fade-in-right{ opacity:0; transform:translateX(36px);  transition:opacity .6s ease, transform .6s ease; }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible { opacity:1; transform:none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* Touch ripple on cards */
.touch-ripple { position:absolute; border-radius:50%; background:rgba(10,102,194,.2); transform:scale(0); animation:touchRip .55s linear forwards; pointer-events:none; z-index:10; }
@keyframes touchRip { to{transform:scale(4);opacity:0} }

/* ================================================
   GLOBAL OVERFLOW GUARD  (prevents horizontal scroll)
   ================================================ */
html, body { overflow-x: hidden; max-width: 100%; }
* { min-width: 0; box-sizing: border-box; }

/* ================================================
   WHY-CTA GRID  (index.html "Why Us + Order CTA")
   ================================================ */
.why-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ================================================
   1024px – tablet
   ================================================ */
@media (max-width: 1024px) {
  .hero-inner           { grid-template-columns: 1fr; text-align: center; }
  .hero-btns,
  .hero-trust           { justify-content: center; }
  .hero-sub             { margin: 0 auto 32px; }
  .hero-img-area        { display: none; }
  .order-wrap           { grid-template-columns: 1fr; gap: 24px; }
  .order-summary        { position: static; }
  .delivery-grid        { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 28px; }
  .why-cta-grid         { grid-template-columns: 1fr; gap: 28px; }
}

/* ================================================
   768px – mobile
   ================================================ */
@media (max-width: 768px) {
  .section    { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  /* Navbar */
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 1005;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a    { font-size: 1.3rem; }
  .hamburger      { display: flex; }

  /* ALL 2-col grids → single column */
  .why-cta-grid         { grid-template-columns: 1fr !important; gap: 20px; }
  .order-wrap           { grid-template-columns: 1fr !important; gap: 20px; }
  .delivery-grid        { grid-template-columns: 1fr !important; }
  .contact-buttons-grid { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-bottom        { flex-direction: column; text-align: center; }

  /* Products — 2 col on mobile */
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }

  /* Bundles — 2 col */
  .bundles-grid { grid-template-columns: repeat(2, 1fr); }

  /* Forms */
  .form-row         { grid-template-columns: 1fr !important; gap: 14px; }
  .order-form-card  { padding: 20px 16px; }
  .order-summary    { position: static; }

  /* Admin */
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Page header */
  .page-header { padding: 120px 0 40px; }

  /* Hero */
  .hero-inner  { padding: 140px 0 60px; }
  .hero-title  { font-size: 2.8rem; }

  /* Logo smaller on mobile */
  .logo-img { height: 70px; }

  /* Why-us feature items: prevent overflow from narrow left column */
  .why-cta-grid > * { width: 100%; }
}

/* ================================================
   480px – small phones
   ================================================ */
@media (max-width: 480px) {
  .container    { padding: 0 14px; }
  .hero-title   { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-badge-row { gap: 6px; flex-wrap: wrap; }
  .hero-badge-row .badge { font-size: .65rem; padding: 4px 10px; }

  /* Products — stay 2 col but smaller */
  .product-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .product-img  { height: 140px; }
  .product-body { padding: 12px; }
  .product-name { font-size: .95rem; }
  .product-price { font-size: 1.25rem; }

  /* Bundles — single col */
  .bundles-grid { grid-template-columns: 1fr !important; }

  /* Admin stats single col */
  .admin-stats-grid { grid-template-columns: 1fr; }

  /* WA + back-to-top */
  .wa-float    { bottom: 76px; right: 14px; }
  .back-to-top { bottom: 20px; right: 14px; }

  /* Marquee */
  .marquee-track span { font-size: .75rem; padding: 0 14px; }

  /* Footer */
  .footer      { padding-top: 36px; }
  .footer-grid { gap: 18px; }

  /* Order page qty rows on tiny screens */
  .qty-row  { flex-wrap: wrap; gap: 6px; }
  .qty-name { font-size: .82rem; flex: 0 0 100%; }

  /* Contact page */
  .contact-btn-card { padding: 16px 18px; }
  .contact-btn-card .cbc-icon { width: 44px; height: 44px; font-size: 1.35rem; }
}

/* ================================================
   Touch / no-hover active states
   ================================================ */
@media (hover: none) {
  .product-card:active      { transform: scale(.97); }
  .bundle-card:active       { transform: scale(.97); }
  .btn:active               { transform: scale(.96); }
  .contact-btn-card:active  { transform: scale(.97); }
  .delivery-card:active     { transform: scale(.97); }
}
