/* ═══════════════════════════════════════════════════
  K2024 SAWIESA — styles.css
  ═══════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #0f766e;
  --orange-dk: #115e59;
  --orange-lt: #ecfeff;
  --dark:      #0f172a;
  --dark-2:    #172033;
  --dark-3:    #334155;
  --mid:       #64748b;
  --light:     #f8fafc;
  --white:     #ffffff;
  --border:    #dbe4ee;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.14);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Utility ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--radius-sm);
  padding: .7em 1.5em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform .15s, box-shadow .15s;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-lg { font-size: 1.0625rem; padding: .85em 2em; }
.btn-full { width: 100%; justify-content: center; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label-light { color: #ffb07a; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--mid); font-size: 1.0625rem; }
.section-header-light h2,
.section-header-light p { color: var(--white); }
.section-header-light p { opacity: .8; }

h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 700; }

/* ═══════════════════ HEADER / NAV ═══════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(17, 24, 39, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-image {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  padding: 6px;
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.logo-text {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.logo-text strong { font-weight: 800; letter-spacing: -.01em; }
.logo-text em { font-style: normal; font-size: .75rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.logo-footer {
  align-items: center;
}
.logo-footer .logo-image {
  width: 68px;
  height: 68px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .9375rem;
  font-weight: 500;
  padding: .45em .9em;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--white); }
.nav-links .nav-cta { padding: .55em 1.3em; }
.nav-links .btn-primary { color: var(--white) !important; background: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(15,23,42,.92) 0%, rgba(15,118,110,.35) 48%, rgba(15,23,42,.96) 100%),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(103,232,249,.12);
  border: 1px solid rgba(103,232,249,.3);
  color: #a5f3fc;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .4em 1.1em;
  margin-bottom: 24px;
}
.hero-badge::before { content: '★'; color: var(--orange); }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pills span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  font-weight: 500;
  border-radius: 999px;
  padding: .35em 1em;
  backdrop-filter: blur(4px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 100px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-arrow {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════ STATS STRIP ═══════════════════ */
.stats-strip {
  background: var(--dark);
  padding: 40px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 48px;
}
.stat-item strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.12);
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-orange {
  background: var(--orange);
  color: var(--white);
  grid-column: span 2;
}
.card-dark {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  grid-column: span 2;
}
.card-icon { font-size: 2rem; }
.about-card p { font-size: 1rem; line-height: 1.6; }

.about-text .section-label { display: block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--mid); margin-bottom: 16px; font-size: 1.0625rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 28px 0 36px; }
.feature { display: flex; align-items: center; gap: 10px; font-size: .9375rem; font-weight: 500; }
.check { color: var(--orange); font-size: 1rem; font-weight: 800; }

/* ═══════════════════ PRODUCTS ═══════════════════ */
.products { background: var(--light); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #67e8f9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.product-icon { font-size: 2.4rem; margin-bottom: 16px; }
.product-card h3 { margin-bottom: 10px; }
.product-card > p { color: var(--mid); font-size: .9375rem; margin-bottom: 18px; }
.product-card ul { display: flex; flex-direction: column; gap: 7px; }
.product-card ul li {
  font-size: .875rem;
  color: var(--dark-3);
  padding-left: 16px;
  position: relative;
}
.product-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.product-card-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-color: transparent;
}
.product-card-cta > p { color: rgba(255,255,255,.65) !important; }
.product-card-cta h3 { color: var(--white); }
.product-card-cta .btn { margin-top: 16px; }

/* ═══════════════════ WHY US ═══════════════════ */
.why-us {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
}
.why-us .section-header { margin-bottom: 64px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { color: var(--white); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.6); font-size: .9375rem; line-height: 1.65; }

/* ═══════════════════ DELIVERY BANNER ═══════════════════ */
.delivery-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  padding: 100px 0;
}

.delivery-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.delivery-text .section-label { color: rgba(255,255,255,.65); }
.delivery-text h2 { color: var(--white); margin-bottom: 20px; }
.delivery-text p { color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-bottom: 36px; max-width: 500px; }
.delivery-text .btn-primary { background: var(--white); color: var(--orange); border-color: var(--white); }
.delivery-text .btn-primary:hover { background: #f9fafb; }

.delivery-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-card {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(8px);
}
.badge-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  min-width: 60px;
}
.badge-label {
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label { display: block; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--mid); margin-bottom: 40px; font-size: 1.0625rem; }

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--orange-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--mid); font-size: .9375rem; }
.contact-item a:hover { color: var(--orange); }

.social-row { display: flex; gap: 12px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .6em 1.1em;
  transition: opacity .2s, transform .15s;
  color: var(--white);
}
.social-btn:hover { opacity: .9; transform: translateY(-1px); }
.facebook { background: #1877f2; }
.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border);
}

.contact-form h3 { margin-bottom: 28px; font-size: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--dark-3); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .9375rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .65em .9em;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,101,34,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note { text-align: center; margin-top: 14px; font-size: .8125rem; color: var(--mid); }
.form-note a { color: var(--orange); font-weight: 600; }

/* Success toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #10b981;
  color: var(--white);
  font-size: .9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(16,185,129,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 9999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error {
  background: #dc2626;
  box-shadow: 0 8px 24px rgba(220,38,38,.35);
}

/* ═══════════════════ MAP ═══════════════════ */
.map-section { height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--dark);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 18px; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col address a,
.footer-col address {
  color: rgba(255,255,255,.65);
  font-size: .9375rem;
  transition: color var(--transition);
  line-height: 1.8;
}
.footer-col ul li a:hover,
.footer-col address a:hover { color: var(--orange); }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .875rem; color: rgba(255,255,255,.35); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
  display: flex;
}
.footer-social a:hover { color: var(--orange); }

/* ═══════════════════ FLOATING WA BUTTON ═══════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,.55); }
.whatsapp-fab:active { transform: scale(.96); }

/* Pulse ring */
.whatsapp-fab::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 100%; height: 100%;
  background: #25d366;
  opacity: .4;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ═══════════════════ SCROLL ANIMATIONS ═══════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .about-card { grid-column: span 1; }
  .card-orange, .card-dark { grid-column: span 2; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .delivery-inner { grid-template-columns: 1fr; gap: 48px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: rgba(17,24,39,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { text-align: center; padding: .8em; }
  .nav-links .nav-cta { margin-top: 8px; }
  .logo-image {
    width: 72px;
    height: 72px;
    padding: 5px;
  }
  .logo-text {
    font-size: .98rem;
  }

  .hero h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }

  .stats-grid { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; margin: 0 auto; }

  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .about-visual { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .card-orange, .card-dark { grid-column: span 1; }

  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .delivery-badges { flex-direction: row; flex-wrap: wrap; }
  .badge-card { flex: 1 1 140px; }
}

@media (max-width: 480px) {
  .hero-pills { display: none; }
  .delivery-badges { flex-direction: column; }
  .social-row { flex-direction: column; }
}
