/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:     #0ea5e9;
  --primary-d:   #0284c7;
  --primary-dd:  #0369a1;
  --accent:      #38bdf8;
  --accent-l:    #bae6fd;
  --dark:        #0c1a2e;
  --dark2:       #0f2744;
  --mid:         #1e3a5f;
  --text:        #e2f4ff;
  --text-muted:  #94c8e8;
  --white:       #ffffff;
  --card-bg:     rgba(14, 40, 80, 0.7);
  --card-border: rgba(56, 189, 248, 0.18);
  --radius:      18px;
  --radius-sm:   10px;
  --shadow:      0 8px 40px rgba(14, 165, 233, 0.15);
  --shadow-lg:   0 20px 60px rgba(14, 165, 233, 0.22);
  --font:        'Inter', sans-serif;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary-d); border-radius: 4px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dd));
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: var(--white);
  color: var(--primary-dd);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

.full-btn { width: 100%; justify-content: center; }

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(12, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(14, 165, 233, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  background: white;
  border-radius: 10px;
  padding: 4px 10px;
  object-fit: contain;
}

.footer-logo-img {
  height: 54px;
  padding: 5px 12px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dd));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(3, 105, 161, 0.12) 0%, transparent 50%),
              linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
  z-index: 0;
}

/* WAVES */
.wave {
  position: absolute;
  width: 200%;
  left: -50%;
  border-radius: 50%;
  opacity: 0.06;
}
.wave1 {
  height: 300px;
  bottom: -100px;
  background: var(--primary);
  animation: waveAnim 8s ease-in-out infinite;
}
.wave2 {
  height: 280px;
  bottom: -80px;
  background: var(--accent);
  animation: waveAnim 10s ease-in-out infinite reverse;
}
.wave3 {
  height: 250px;
  bottom: -60px;
  background: var(--primary-d);
  animation: waveAnim 12s ease-in-out infinite 2s;
}

@keyframes waveAnim {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(5%) scaleY(1.05); }
}

/* BUBBLES */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bubbles span {
  position: absolute;
  bottom: -100px;
  width: 12px;
  height: 12px;
  background: rgba(56, 189, 248, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.3);
  animation: bubbleRise linear infinite;
}
.bubbles span:nth-child(1)  { left: 10%; width: 8px;  height: 8px;  animation-duration: 9s;  animation-delay: 0s; }
.bubbles span:nth-child(2)  { left: 20%; width: 14px; height: 14px; animation-duration: 12s; animation-delay: 2s; }
.bubbles span:nth-child(3)  { left: 35%; width: 6px;  height: 6px;  animation-duration: 8s;  animation-delay: 4s; }
.bubbles span:nth-child(4)  { left: 50%; width: 16px; height: 16px; animation-duration: 14s; animation-delay: 1s; }
.bubbles span:nth-child(5)  { left: 65%; width: 10px; height: 10px; animation-duration: 10s; animation-delay: 3s; }
.bubbles span:nth-child(6)  { left: 75%; width: 7px;  height: 7px;  animation-duration: 7s;  animation-delay: 5s; }
.bubbles span:nth-child(7)  { left: 85%; width: 12px; height: 12px; animation-duration: 11s; animation-delay: 0.5s; }
.bubbles span:nth-child(8)  { left: 92%; width: 9px;  height: 9px;  animation-duration: 13s; animation-delay: 2.5s; }

@keyframes bubbleRise {
  0%   { transform: translateY(0) scale(1); opacity: 0.5; }
  50%  { opacity: 0.8; }
  100% { transform: translateY(-110vh) scale(0.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 1s ease 0.1s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 1s ease 0.3s both;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 26px; font-weight: 900; color: var(--accent); }
.stat span { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: rgba(56, 189, 248, 0.2); }

/* HERO IMAGE CARD */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease 0.2s both;
}

.water-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 40, 80, 0.8), rgba(3, 105, 161, 0.3));
  border: 1px dashed rgba(56, 189, 248, 0.3);
}

/* Real image loaded — hide dashed border */
.img-placeholder:has(img:not([src=""])) {
  border: none;
  background: transparent;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
}

/* Transparent-bg product images (water bottle PNG) */
.product-img-contain {
  object-fit: contain !important;
  padding: 10px;
  background: transparent;
  filter: drop-shadow(0 8px 24px rgba(14,165,233,0.25));
}

.img-placeholder.no-img img { display: none; }
.img-placeholder.no-img .ph-fallback { display: flex; }

.ph-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

/* Show fallback when img fails OR no img tag */
.img-placeholder:not(:has(img)) .ph-fallback { display: flex; }

.water-ph { width: 220px; height: 290px; }
.product-ph { width: 100%; height: 300px; }
.cooler-ph { background: #111c2e; }
.cooler-ph img { object-fit: contain !important; padding: 16px; }
.promo-ph { width: 300px; height: 200px; border-radius: 16px; overflow: hidden; }
.promo-ph img { object-fit: cover; border-radius: 16px; }
.form-ph { width: 100%; height: 220px; border-radius: 16px; overflow: hidden; }
.form-ph img { object-fit: cover; object-position: center; border-radius: 16px; }

/* ===== MODAL POPUP ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 35, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: linear-gradient(145deg, var(--dark2), rgba(14, 40, 80, 0.97));
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 28px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(56,189,248,0.1);
  transform: scale(0.94) translateY(24px);
  transition: transform 0.32s cubic-bezier(.34,1.46,.64,1);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-drag-handle {
  display: none;
  width: 40px;
  height: 4px;
  background: rgba(148,200,232,0.3);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.modal-close:hover { background: rgba(239,68,68,0.2); color: #fca5a5; border-color: rgba(239,68,68,0.3); }

.modal-header { text-align: center; margin-bottom: 28px; }
.modal-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 12px;
  padding: 6px 14px;
  margin-bottom: 14px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.modal-header h2 { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--text-muted); }

/* ===== FLOATING ORDER BUTTON ===== */
.float-order-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dd));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(14, 165, 233, 0.5);
  transition: var(--transition);
  position: fixed;
}
.float-order-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 40px rgba(14,165,233,0.6); }

.float-pulse {
  position: absolute;
  top: -3px; right: -3px;
  width: 14px; height: 14px;
  background: #f87171;
  border-radius: 50%;
  border: 2px solid var(--dark);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* ===== HERO PRICE CHIPS ===== */
.hero-prices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.15s both;
}

.hp-chip {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-sm);
  gap: 2px;
  transition: var(--transition);
}
.hp-chip:hover { border-color: rgba(56,189,248,0.45); background: rgba(14,165,233,0.13); }
.hp-chip.hot { border-color: rgba(56, 189, 248, 0.4); background: rgba(14,165,233,0.12); }
.hp-chip.gift { border-color: rgba(52, 211, 153, 0.4); background: rgba(52, 211, 153, 0.08); }

.hp-qty { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.hp-price { font-size: 16px; font-weight: 800; color: var(--white); }
.hp-save {
  font-size: 12px;
  font-weight: 700;
  color: #34d399;
  margin-top: 2px;
}
.hp-chip.hot .hp-save { color: var(--accent); }

/* ===== HERO PRODUCTS STACK ===== */
.hero-products-stack {
  position: relative;
  width: 380px;
  height: 440px;
}

.hero-img-card.float1 {
  position: absolute;
  left: 0;
  top: 0;
  animation: float1 5s ease-in-out infinite;
}

.cooler-hero-card.float2 {
  position: absolute;
  right: 0;
  bottom: 0;
  animation: float2 6s ease-in-out infinite 1s;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
.cooler-hero-ph { width: 170px; height: 210px; background: #111c2e; }
.cooler-hero-ph img { object-fit: contain !important; padding: 10px; }
.gift-badge { background: linear-gradient(135deg, #059669, #10b981) !important; }

/* ===== PROMO COUNTDOWN ===== */
.promo-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 28px;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 64px;
}
.cd-item span { font-size: 28px; font-weight: 900; color: white; line-height: 1; }
.cd-item small { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.cd-sep { font-size: 24px; font-weight: 900; color: rgba(255,255,255,0.5); }

/* ===== INSTAGRAM SECTION ===== */
.insta-section {
  background: var(--dark2);
}
.insta-section .section-title,
.insta-section .section-tag { text-align: center; margin-left: auto; margin-right: auto; display: block; }

.insta-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.insta-reel-wrap {
  display: flex;
  justify-content: center;
}

.insta-reel-wrap .instagram-media {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(56,189,248,0.15);
}

.insta-cta h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 14px;
}
.insta-cta p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; line-height: 1.7; }

.insta-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.is-item { text-align: center; }
.is-item strong { display: block; font-size: 24px; font-weight: 900; color: var(--accent); }
.is-item span { font-size: 13px; color: var(--text-muted); }

/* ===== FORM TRUST BADGES ===== */
.form-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-item {
  font-size: 14px;
  font-weight: 600;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-order-btn {
  margin-top: 16px;
  font-size: 14px;
  padding: 11px 22px;
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--dark2);
}

.products .section-title,
.products .section-tag { text-align: center; margin-left: auto; margin-right: auto; display: block; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 189, 248, 0.35);
}

.cooler-card {
  border-color: rgba(56, 189, 248, 0.3);
  background: linear-gradient(135deg, rgba(14, 40, 80, 0.9), rgba(3, 105, 161, 0.2));
}

.product-img-wrap {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(3, 105, 161, 0.05));
  padding: 30px;
  display: flex;
  justify-content: center;
}

.product-img-wrap .img-placeholder { margin: 0 auto; }

.product-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.promo-label {
  background: linear-gradient(135deg, var(--primary), var(--primary-dd)) !important;
}

.product-info { padding: 28px; }

.product-info h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.product-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-features li {
  font-size: 14px;
  color: var(--accent-l);
}

.product-price-block {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.price-label { color: var(--text-muted); }

.price-val {
  font-weight: 700;
  color: var(--white);
}

.price-val.sale {
  color: var(--accent);
  font-size: 16px;
}

.promo-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(3, 105, 161, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.promo-fire { font-size: 28px; }

.promo-info-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.promo-info-card span {
  font-size: 13px;
  color: var(--accent);
}

/* ===== PRICES ===== */
.prices {
  background: var(--dark);
}

.prices .section-title,
.prices .section-tag { text-align: center; margin-left: auto; margin-right: auto; display: block; }

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-card.popular {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(14, 40, 80, 0.95), rgba(14, 165, 233, 0.08));
  transform: scale(1.03);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
}

.price-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.price-card.premium {
  border-color: rgba(56, 189, 248, 0.4);
  background: linear-gradient(135deg, rgba(14, 40, 80, 0.95), rgba(56, 189, 248, 0.07));
}

.popular-badge, .premium-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.popular-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dd));
  color: white;
}

.premium-badge {
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
}

.price-tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  margin-top: 8px;
}

.price-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}

.price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-list li {
  font-size: 14px;
  color: var(--text-muted);
}

.price-list .highlight-li {
  color: #34d399;
  font-size: 15px;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--primary-dd) 0%, var(--mid) 50%, var(--primary-d) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.promo-waves { position: absolute; inset: 0; pointer-events: none; }
.pwave {
  position: absolute;
  width: 150%;
  left: -25%;
  border-radius: 50%;
  opacity: 0.1;
}
.pw1 { height: 200px; bottom: -60px; background: white; animation: waveAnim 7s ease-in-out infinite; }
.pw2 { height: 180px; bottom: -40px; background: var(--accent); animation: waveAnim 9s ease-in-out infinite reverse; }

.promo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.promo-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.promo-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
}

.promo-text h2 span { display: block; }
.promo-text h2 em { font-style: normal; text-decoration: underline; text-underline-offset: 5px; }

.promo-text p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 28px;
}

.promo-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.promo-img-wrap {
  display: flex;
  justify-content: center;
}

.promo-ph .ph-fallback .gift-icon { font-size: 64px; }

.promo-badges-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.promo-badge-item {
  text-align: center;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 16px 24px;
  backdrop-filter: blur(10px);
}

.promo-badge-item strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: white;
}

.promo-badge-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.promo-badge-item.free {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.promo-badge-item.free strong { color: #fde68a; font-size: 26px; }

.promo-plus {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,0.6);
}

/* ===== HOW TO ===== */
.howto { background: var(--dark2); }

.howto .section-title,
.howto .section-tag { text-align: center; margin-left: auto; margin-right: auto; display: block; }

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow);
}

.step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(56, 189, 248, 0.08);
  line-height: 1;
}

.step-icon { font-size: 44px; margin-bottom: 14px; display: block; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.step-card p { font-size: 14px; color: var(--text-muted); }

.step-arrow {
  font-size: 28px;
  color: rgba(56, 189, 248, 0.4);
  font-weight: 300;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact { background: var(--dark); }

.contact .section-title,
.contact .section-tag { text-align: center; margin-left: auto; margin-right: auto; display: block; }

.form-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}

.form-left { display: flex; flex-direction: column; gap: 24px; }

.form-promo-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(3, 105, 161, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.fpc-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.form-promo-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }

.form-promo-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-promo-card li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.fpc-num {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(14, 165, 233, 0.2);
  color: var(--accent);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

/* ORDER FORM */
.order-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148, 200, 232, 0.4); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(14, 165, 233, 0.1);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group select option { background: var(--dark2); color: var(--white); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group textarea { resize: vertical; min-height: 90px; }

/* PRICE PREVIEW */
.price-preview {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

.pp-row strong { color: var(--white); font-weight: 700; }
.pp-row.total { padding-top: 10px; border-top: 1px solid rgba(56,189,248,0.15); font-size: 16px; }
.pp-row.total strong { color: var(--accent); font-size: 18px; }
.pp-row.bonus strong { color: #34d399; }

.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: none;
  margin-bottom: 12px;
  position: relative;
}

.loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-note { font-size: 12px; color: rgba(148,200,232,0.5); text-align: center; }

.form-success {
  text-align: center;
  padding: 30px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

.success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { font-size: 20px; font-weight: 700; color: #34d399; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

.form-error {
  padding: 14px 18px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  font-size: 14px;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-links a, .footer-contact a, .footer-contact p {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }

.footer-phone {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  display: block;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.soc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: white !important;
  transition: var(--transition);
  flex-shrink: 0;
}
.soc-btn:hover { transform: translateY(-3px); filter: brightness(1.2); }
.soc-btn.tg { background: #229ED9; }
.soc-btn.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc-btn.fb { background: #1877F2; }
.soc-btn.tt { background: #010101; border: 1px solid rgba(255,255,255,0.15); }
.soc-btn.yt { background: #FF0000; }

.footer-address {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(56, 189, 248, 0.08);
  padding: 20px;
  text-align: center;
  color: rgba(148, 200, 232, 0.4);
  font-size: 13px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .prices-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-6px); }
  .form-wrapper { grid-template-columns: 1fr; }
  .form-left { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .form-promo-card { flex: 1; min-width: 240px; }
  .form-img-wrap { flex: 1; min-width: 240px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .insta-wrapper { grid-template-columns: 1fr; justify-items: center; gap: 36px; }
  .insta-cta { text-align: center; max-width: 500px; }
  .insta-stats { justify-content: center; }
  .hero-products-stack { width: 300px; height: 360px; }
  .water-ph { width: 180px; height: 240px; }
  .cooler-hero-ph { width: 155px; height: 195px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* ----- NAVBAR ----- */
  .navbar { padding: 12px 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .logo-img { height: 36px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 44, 0.98);
    backdrop-filter: blur(24px);
    padding: 20px 16px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
    z-index: 999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }

  .nav-links.open a {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 15px;
    background: rgba(14,165,233,0.04);
    border: 1px solid transparent;
  }
  .nav-links.open a:hover {
    background: rgba(14,165,233,0.1);
    border-color: rgba(56,189,248,0.15);
  }
  .nav-links.open a::after { display: none; }

  .nav-links.open .nav-cta {
    margin-top: 8px;
    padding: 14px 20px;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dd));
    font-size: 15px;
  }

  /* ----- MODAL ----- */
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal {
    border-radius: 24px 24px 0 0;
    padding: 24px 16px 32px;
    max-width: 100%;
    max-height: 92vh;
    width: 100%;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.36s cubic-bezier(.32,1,.24,1);
  }
  .modal-overlay.active .modal { transform: translateY(0); }
  .modal-drag-handle { display: block; }
  .modal-logo { height: 48px; }
  .modal-header h2 { font-size: 20px; }
  .modal-header p { font-size: 13px; }

  /* ----- FLOAT BTN ----- */
  .float-order-btn {
    bottom: 16px;
    right: 16px;
    padding: 13px 20px;
    font-size: 14px;
    gap: 6px;
    box-shadow: 0 6px 24px rgba(14,165,233,0.45);
  }

  /* ----- HERO ----- */
  .hero { min-height: auto; padding-top: 70px; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    padding: 28px 16px 48px;
  }

  .hero-text { order: 2; }
  .hero-visual { order: 1; }

  /* Hero — show only water bottle, centered */
  .hero-visual {
    justify-content: center;
    padding: 20px 0 4px;
  }
  .hero-products-stack {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .hero-img-card.float1,
  .cooler-hero-card.float2 {
    position: static;
    animation: float 5s ease-in-out infinite;
  }
  .cooler-hero-card.float2 { animation-delay: 1s; }
  .water-card { padding: 14px; border-radius: 20px; }
  .water-ph  { width: 120px; height: 160px; }
  .cooler-hero-ph { width: 100px; height: 134px; background: #111c2e; }

  .hero-badge { font-size: 12px; padding: 6px 14px; }
  .hero-title { font-size: 28px; margin-bottom: 12px; }
  .hero-sub { font-size: 15px; margin: 0 auto 18px; max-width: 320px; }

  .hero-prices {
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hp-chip { padding: 8px 12px; flex: 1; min-width: 90px; max-width: 130px; }
  .hp-qty  { font-size: 11px; }
  .hp-price { font-size: 13px; }
  .hp-save { font-size: 11px; }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; padding: 15px 20px; }

  .hero-stats { justify-content: center; gap: 16px; }
  .stat strong { font-size: 20px; }
  .stat span   { font-size: 12px; }

  /* ----- SECTION HEADERS ----- */
  .section-title { font-size: 24px; }
  .section-sub   { font-size: 15px; margin-bottom: 36px; }

  /* ----- PRODUCTS ----- */
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-img-wrap { padding: 20px 20px 0; }
  .product-ph { height: 240px; }
  .cooler-ph img { padding: 10px; }
  .product-info { padding: 20px; }
  .product-info h3 { font-size: 19px; }

  /* ----- PRICES ----- */
  .prices-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 36px auto 0;
  }
  .price-card { padding: 28px 22px; }
  .popular-badge, .premium-badge { font-size: 12px; }

  /* ----- PROMO ----- */
  .promo-banner { padding: 52px 0; }
  .promo-inner { grid-template-columns: 1fr; gap: 32px; }
  .promo-text { text-align: center; }
  .promo-text h2 { font-size: 24px; }
  .promo-text p  { font-size: 15px; }
  .promo-countdown { justify-content: center; }
  .cd-item { padding: 8px 14px; min-width: 56px; }
  .cd-item span { font-size: 22px; }
  .cd-item small { font-size: 10px; }
  .promo-visual { align-items: center; }
  .promo-ph { width: 100%; max-width: 320px; height: 180px; }
  .promo-badges-wrap { gap: 10px; }
  .promo-badge-item { padding: 12px 18px; }
  .promo-badge-item strong { font-size: 22px; }

  /* ----- INSTAGRAM ----- */
  .insta-section .section-sub { margin-bottom: 28px; }
  .insta-wrapper { gap: 24px; }
  .insta-reel-wrap { width: 100%; }
  .insta-reel-wrap .instagram-media { min-width: 100% !important; max-width: 100% !important; }
  .insta-cta h3    { font-size: 22px; }
  .insta-cta p     { font-size: 14px; margin-bottom: 20px; }
  .insta-stats { gap: 16px; }
  .is-item strong  { font-size: 20px; }

  /* ----- HOW IT WORKS ----- */
  .steps-grid { flex-direction: column; align-items: stretch; gap: 0; }
  .step-card {
    max-width: none;
    padding: 24px 20px;
    border-radius: 16px;
    margin-bottom: 2px;
  }
  .step-card:first-child { border-radius: 16px 16px 6px 6px; }
  .step-card:last-child  { border-radius: 6px 6px 16px 16px; }
  .step-arrow {
    text-align: center;
    font-size: 20px;
    color: rgba(56,189,248,0.35);
    padding: 4px 0;
  }
  .step-icon  { font-size: 36px; margin-bottom: 10px; }
  .step-num   { font-size: 36px; }
  .step-card h3 { font-size: 16px; }
  .step-card p  { font-size: 13px; }

  /* ----- CONTACT FORM ----- */
  .form-wrapper { gap: 20px; }
  .form-left { flex-direction: column; gap: 14px; }
  .form-promo-card { padding: 20px; }
  .form-img-wrap { display: none; }
  .form-trust { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .trust-item { font-size: 13px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .order-form { padding: 20px 16px; border-radius: 18px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 14px;
    font-size: 16px; /* prevents iOS zoom */
  }
  .form-group label { font-size: 13px; }
  .price-preview { padding: 14px; }
  .submit-btn { padding: 15px; font-size: 15px; border-radius: 12px; }

  /* ----- FOOTER ----- */
  .footer { padding: 40px 0 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .footer-brand { text-align: center; }
  .footer-brand p { margin: 8px auto 14px; }
  .footer-order-btn { margin: 0 auto; display: flex; width: fit-content; }
  .footer-logo-img { height: 46px; margin: 0 auto; }
  .footer-links { display: none; }
  .footer-contact { text-align: center; }
  .social-links { justify-content: center; }
  .footer-bottom { padding: 16px; font-size: 12px; }
}

/* Small phones */
@media (max-width: 390px) {
  .hero-title { font-size: 24px; }
  .hero-prices { gap: 6px; }
  .hp-chip { min-width: 80px; padding: 7px 8px; }
  .hp-price { font-size: 12px; }
  .section-title { font-size: 21px; }
  .price-amount { font-size: 30px; }
  .order-form { padding: 16px 12px; }
}
