
/* ══ VARIABLES ══════════════════════════════════════════════ */
:root {
  --ice: #e8f4fd;
  --deep-blue: #0a2342;
  --mid-blue: #1565a8;
  --cyan: #00c2e0;
  --frost: #cde9f6;
  --white: #ffffff;
  --accent: #ff6b35;
  --accent2: #ffd166;
  --text: #1a2a3a;
  --muted: #5e7a90;
  --shadow: 0 8px 40px rgba(10,35,66,0.13);
}

/* ══ RESET ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--deep-blue); color: var(--text); overflow-x: hidden; }

/* ══ HERO ════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,194,224,0.18) 0%, transparent 70%),
              linear-gradient(135deg, #041525 0%, #0a2342 45%, #0e3460 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* snowflakes */
.snowflakes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.flake { position: absolute; top: -30px; color: rgba(255,255,255,0.2); font-size: 1.2rem; animation: fall linear infinite; }
.flake:nth-child(1)  { left: 5%;  animation-duration: 8s;  animation-delay: 0s; }
.flake:nth-child(2)  { left: 15%; animation-duration: 11s; animation-delay: 2s; }
.flake:nth-child(3)  { left: 28%; animation-duration: 9s;  animation-delay: 5s; }
.flake:nth-child(4)  { left: 42%; animation-duration: 13s; animation-delay: 1s; }
.flake:nth-child(5)  { left: 57%; animation-duration: 7s;  animation-delay: 3s; }
.flake:nth-child(6)  { left: 68%; animation-duration: 10s; animation-delay: 6s; }
.flake:nth-child(7)  { left: 80%; animation-duration: 12s; animation-delay: 4s; }
.flake:nth-child(8)  { left: 92%; animation-duration: 8s;  animation-delay: 7s; }
.flake:nth-child(9)  { left: 35%; animation-duration: 14s; animation-delay: 0.5s; }
.flake:nth-child(10) { left: 72%; animation-duration: 9s;  animation-delay: 8s; }
@keyframes fall { to { transform: translateY(110vh) rotate(360deg); opacity: 0; } }

/* nav */
nav { position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 5vw; }
.logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--cyan), var(--mid-blue)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 18px rgba(0,194,224,0.4); }
.logo-text span { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 1px; color: var(--white); }
.logo-text small { display: block; font-size: 0.62rem; letter-spacing: 3px; color: var(--cyan); text-transform: uppercase; font-weight: 700; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 700; font-size: 0.88rem; transition: color .2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta { background: var(--accent); color: #fff; padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 800; font-size: 0.85rem; text-decoration: none; box-shadow: 0 4px 14px rgba(255,107,53,0.4); transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translateY(-2px); }

/* hero body */
.hero-body { flex: 1; display: flex; align-items: center; padding: 2rem 5vw 5rem; gap: 3rem; }
.hero-text { flex: 1; max-width: 580px; }
.badge { display: inline-block; background: rgba(0,194,224,0.15); border: 1px solid rgba(0,194,224,0.35); color: var(--cyan); font-size: 0.75rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.2rem; }
h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.2rem, 8vw, 6rem); line-height: 0.95; color: var(--white); cursor: default; }
h1 em { font-style: normal; background: linear-gradient(90deg, var(--cyan), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { margin-top: 1.2rem; color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; }
.hero-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #e84f1f); color: #fff; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 800; font-size: 0.95rem; text-decoration: none; box-shadow: 0 6px 22px rgba(255,107,53,0.45); transition: transform .2s, box-shadow .2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { transform: translateY(-3px); }

/* hero visual */
.hero-visual { flex: 1; max-width: 420px; display: flex; flex-direction: column; gap: 1rem; }
.info-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 1.4rem 1.6rem; display: flex; align-items: center; gap: 1rem; }
.info-card .ic-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--cyan), var(--mid-blue)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.info-card .ic-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.info-card .ic-val { color: #fff; font-weight: 800; font-size: 0.97rem; margin-top: 0.15rem; }
.stats-row { display: flex; gap: 1rem; }
.stat-box { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1.1rem; text-align: center; }
.stat-box .num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--cyan); line-height: 1; }
.stat-box .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 0.2rem; }

/* wave */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }

/* ══ SECTIONS SHARED ════════════════════════════════════════ */
section { padding: 5rem 5vw; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow { font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--mid-blue); margin-bottom: 0.5rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--deep-blue); line-height: 1.05; }
.section-sub { color: var(--muted); margin-top: 0.6rem; font-size: 1rem; }

/* ══ PRODUCTS ════════════════════════════════════════════════ */
.products-section { background: var(--ice); }
.category-tabs { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 2.5rem; }
.tab { padding: 0.6rem 1.6rem; border-radius: 50px; border: 2px solid #c5ddf0; background: #fff; color: var(--mid-blue); font-weight: 800; font-size: 0.88rem; cursor: pointer; transition: all .2s; }
.tab.active, .tab:hover { background: var(--mid-blue); color: #fff; border-color: var(--mid-blue); }
.product-group { display: none; }
.product-group.active { display: block; }
.products-error { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 2rem; font-weight: 700; }
.group-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--deep-blue); margin-bottom: 1rem; letter-spacing: 0.5px; }
.products-groups { max-width: 1180px; margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(10,35,66,0.15); }
.product-card--no-img .product-body { padding-top: 0.85rem; }
.product-img {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ice) 0%, #fff 100%);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.85rem 0.5rem;
  min-height: 0;
}
.product-name {
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.25;
  color: var(--deep-blue);
  margin-bottom: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-unit { font-size: 0.7rem; color: var(--muted); font-weight: 600; margin-bottom: 0.35rem; }
.product-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--mid-blue); line-height: 1; margin-top: auto; }
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem 0.85rem;
  border-top: 1px solid var(--ice);
  margin-top: auto;
}
.qty-input { width: 100%; padding: 0.35rem 0.5rem; border: 1.5px solid #c5ddf0; border-radius: 8px; font-family: inherit; font-size: 0.85rem; color: var(--deep-blue); }
.qty-select { background: #fff; cursor: pointer; }
.add-cart-btn { background: var(--mid-blue); color: #fff; border: none; padding: 0.45rem; border-radius: 8px; font-family: inherit; font-weight: 800; font-size: 0.78rem; cursor: pointer; transition: opacity .2s; }
.add-cart-btn:hover { opacity: 0.85; }
.add-cart-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ══ CART ════════════════════════════════════════════════════ */
.cart-section { background: var(--deep-blue); }
.cart-section .section-title, .cart-section .section-eyebrow { color: #fff; }
.cart-box { max-width: 680px; margin: 0 auto; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 2rem; }
.cart-empty { color: rgba(255,255,255,0.4); font-size: 0.95rem; text-align: center; padding: 1rem 0; }
.cart-item { background: rgba(255,255,255,0.07); border-radius: 12px; padding: 0.9rem 1rem; margin-bottom: 0.6rem; }
.cart-fee-row { display: flex; justify-content: space-between; color: rgba(255,255,255,0.75); font-weight: 700; font-size: 0.88rem; padding: 0.5rem 0.25rem 0; margin-top: 0.25rem; border-top: 1px dashed rgba(255,255,255,0.15); }
.cart-item-main { display: flex; justify-content: space-between; color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
.cart-item-controls { display: flex; gap: 0.5rem; }
.cart-qty-btn { background: rgba(255,255,255,0.1); color: #fff; border: none; width: 30px; height: 30px; border-radius: 8px; font-size: 1rem; cursor: pointer; transition: background .2s; }
.cart-qty-btn:hover { background: rgba(255,255,255,0.2); }
.cart-remove-btn { background: rgba(255,80,80,0.2); color: #ff8080; border: none; padding: 0 0.8rem; height: 30px; border-radius: 8px; font-size: 0.78rem; font-weight: 800; cursor: pointer; }
.checkout-fulfillment { margin: 1.2rem 0; }
.fulfillment-options { display: flex; gap: 1rem; margin-bottom: 1rem; }
.fulfillment-option { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-weight: 700; font-size: 0.88rem; cursor: pointer; }
.category-note { margin: -0.5rem 0 1.25rem; font-size: 0.88rem; line-height: 1.5; color: var(--muted, #5a6a7a); text-align: center; max-width: 36rem; margin-left: auto; margin-right: auto; }
.delivery-fields { display: flex; flex-direction: column; gap: 0.5rem; }
.delivery-note { margin: 0; font-size: 0.85rem; line-height: 1.45; color: var(--muted, #666); }
.cart-fee-note span:last-child { font-size: 0.85rem; text-align: right; max-width: 14rem; }
.field-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 700; }
.checkout-input { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 0.6rem 0.9rem; color: #fff; font-family: inherit; font-size: 0.88rem; width: 100%; }
.cart-footer { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.cart-total { color: rgba(255,255,255,0.7); font-weight: 800; font-size: 1rem; }
.cart-checkout { text-align: center; justify-content: center; }
.cart-checkout.disabled { opacity: 0.4; pointer-events: none; }

/* ══ ABOUT ═══════════════════════════════════════════════════ */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.about-big-icon { font-size: 8rem; filter: drop-shadow(0 20px 40px rgba(0,194,224,0.3)); }
.floating-badge { position: absolute; background: var(--deep-blue); color: #fff; padding: 0.6rem 1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; box-shadow: var(--shadow); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.fb1 { top: 1rem; right: 0; }
.fb2 { bottom: 1rem; left: 0; }
.about-text .tag { display: inline-block; background: var(--ice); color: var(--mid-blue); font-size: 0.72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 1rem; }
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--deep-blue); margin-bottom: 1rem; line-height: 1.1; }
.about-text p { color: var(--muted); line-height: 1.7; margin-bottom: 0.8rem; font-size: 0.95rem; }
.perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.2rem; }
.perks li { display: flex; align-items: center; gap: 0.7rem; font-weight: 700; color: var(--deep-blue); font-size: 0.9rem; }
.perk-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--ice); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* ══ HOW TO ORDER ════════════════════════════════════════════ */
.order-section { background: var(--ice); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.step-card { background: #fff; border-radius: 20px; padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); position: relative; }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--mid-blue); color: #fff; width: 28px; height: 28px; border-radius: 50%; font-size: 0.78rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.step-title { font-weight: 800; color: var(--deep-blue); font-size: 0.95rem; margin-bottom: 0.4rem; }
.step-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }

/* ══ CONTACT ═════════════════════════════════════════════════ */
.contact-section { background: var(--deep-blue); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info .section-title, .contact-info .section-eyebrow, .contact-info .section-sub { color: rgba(255,255,255,0.9); }
.contact-info .section-eyebrow { color: var(--cyan); }
.contact-cards { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1rem 1.3rem; }
.contact-item .ci-icon { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--cyan), var(--mid-blue)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item .ci-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.contact-item .ci-val { color: #fff; font-weight: 700; font-size: 0.92rem; margin-top: 0.15rem; }
.contact-item .ci-val a { color: #fff; text-decoration: none; }
.wa-cta-box { background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(18,140,126,0.12)); border: 1px solid rgba(37,211,102,0.25); border-radius: 24px; padding: 2.5rem 2rem; }
.wa-cta-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff; margin-bottom: 0.5rem; }
.wa-cta-box p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.8rem; }

/* ══ SUPPORT BOT ═══════════════════════════════════════════════ */
.support-bot {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  font-family: 'Nunito', sans-serif;
}
.support-bot__launcher {
  position: relative;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mid-blue), var(--cyan));
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(21, 101, 168, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.support-bot__launcher:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(21, 101, 168, 0.5);
}
.support-bot__launcher.is-open {
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
}
.support-bot__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  animation: support-pulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes support-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.support-bot__panel {
  display: none;
  position: absolute;
  bottom: calc(100% + 0.6rem);
  right: 0;
  width: min(280px, calc(100vw - 2.5rem));
  max-height: min(360px, 65vh);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(4, 15, 28, 0.2);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(21, 101, 168, 0.12);
  transform-origin: bottom right;
  animation: support-pop 0.2s ease-out;
}
.support-bot__panel.is-open {
  display: flex;
}
@keyframes support-pop {
  from { opacity: 0; transform: scale(0.92) translateY(6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.support-bot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
  color: #fff;
  flex-shrink: 0;
}
.support-bot__header-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.support-bot__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.support-bot__header strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
}
.support-bot__header small {
  font-size: 0.68rem;
  opacity: 0.85;
}
.support-bot__close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.support-bot__close:hover { background: rgba(255, 255, 255, 0.22); }
.support-bot__messages {
  overflow-y: auto;
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #f4f9fd;
  flex: 1;
  min-height: 0;
  max-height: min(220px, 42vh);
  -webkit-overflow-scrolling: touch;
}
.support-bot__msg {
  display: flex;
  gap: 0.35rem;
  max-width: 95%;
}
.support-bot__msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.support-bot__msg--bot .support-bot__msg-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.support-bot__bubble {
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--deep-blue);
}
.support-bot__msg--bot .support-bot__bubble {
  background: #fff;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(10, 35, 66, 0.08);
}
.support-bot__msg--user .support-bot__bubble {
  background: var(--mid-blue);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.support-bot__typing {
  display: flex;
  gap: 4px;
  padding: 0.4rem 0.6rem;
  background: #fff;
  border-radius: 12px;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(10, 35, 66, 0.08);
}
.support-bot__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mid-blue);
  animation: support-dot 1.2s ease-in-out infinite;
}
.support-bot__typing span:nth-child(2) { animation-delay: 0.15s; }
.support-bot__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes support-dot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}
.support-bot__prompts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.6rem 0.75rem 0.75rem;
  border-top: 1px solid var(--ice);
  background: #fff;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.support-bot__chip {
  border: 1.5px solid #c5ddf0;
  background: var(--ice);
  color: var(--mid-blue);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.support-bot__chip:hover {
  background: var(--mid-blue);
  color: #fff;
  border-color: var(--mid-blue);
}

/* ══ FOOTER ══════════════════════════════════════════════════ */
footer { background: #050e1c; padding: 2rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
footer p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: rgba(255,255,255,0.5); }

/* ══ ADMIN PANEL ═════════════════════════════════════════════ */
.admin-overlay { display: none; position: fixed; inset: 0; background: rgba(4,15,28,0.85); z-index: 1000; align-items: center; justify-content: center; padding: 1rem; }
.admin-overlay.open { display: flex; }
.admin-panel { background: #fff; border-radius: 20px; width: 100%; max-width: 680px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(4,15,28,0.5); display: flex; flex-direction: column; }
.admin-header { background: var(--deep-blue); color: #fff; padding: 1.2rem 1.6rem; border-radius: 20px 20px 0 0; display: flex; align-items: center; justify-content: space-between; }
.admin-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 1px; }
.admin-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.admin-logout { background: rgba(255,255,255,0.1); border: none; color: #fff; padding: 0.35rem 0.75rem; border-radius: 999px; cursor: pointer; font-family: inherit; font-size: 0.75rem; font-weight: 800; }
.admin-logout:hover { background: rgba(255,255,255,0.2); }
.admin-close { background: rgba(255,255,255,0.1); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.admin-close:hover { background: rgba(255,255,255,0.2); }
.admin-login { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.admin-login label { font-weight: 800; font-size: 0.85rem; color: var(--deep-blue); }
.admin-login input { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid #c5ddf0; border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--deep-blue); margin-top: 0.3rem; }
.admin-login input:focus { outline: none; border-color: var(--mid-blue); }
.admin-login-btn { background: var(--mid-blue); color: #fff; border: none; padding: 0.75rem; border-radius: 10px; font-family: inherit; font-weight: 800; font-size: 0.95rem; cursor: pointer; }
.admin-login-btn:hover { opacity: 0.85; }
.admin-error { color: #c0392b; font-size: 0.82rem; font-weight: 700; display: none; }
.admin-error.show { display: block; }
.admin-body { padding: 1.5rem; display: none; flex-direction: column; gap: 1.5rem; }
.admin-body.show { display: flex; }
.admin-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--deep-blue); border-bottom: 2px solid var(--ice); padding-bottom: 0.4rem; margin-bottom: 0.8rem; }
.admin-add-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.admin-add-form input, .admin-add-form select { padding: 0.6rem 0.8rem; border: 1.5px solid #c5ddf0; border-radius: 8px; font-family: inherit; font-size: 0.88rem; color: var(--deep-blue); }
.admin-photo-field { grid-column: 1 / -1; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.admin-row-preview {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ice);
  border: 1.5px solid #c5ddf0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-row-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.admin-row-preview__empty { font-size: 1.35rem; line-height: 1; opacity: 0.55; }
.admin-photo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  background: #fff;
  border: 1.5px dashed var(--mid-blue);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--mid-blue);
  cursor: pointer;
  text-align: center;
}
.admin-photo-btn--block { flex: 1; min-width: 12rem; }
.admin-photo-btn:active { background: var(--ice); }
.admin-add-form input:focus, .admin-add-form select:focus { outline: none; border-color: var(--mid-blue); }
.admin-add-btn { grid-column: 1 / -1; background: var(--mid-blue); color: #fff; border: none; padding: 0.65rem; border-radius: 8px; font-family: inherit; font-weight: 800; font-size: 0.9rem; cursor: pointer; }
.admin-add-btn:hover { opacity: 0.85; }
.admin-product-list { display: flex; flex-direction: column; gap: 0.6rem; max-height: 340px; overflow-y: auto; }
.admin-product-row { display: flex; flex-direction: column; gap: 0.55rem; background: var(--ice); border-radius: 10px; padding: 0.65rem 0.8rem; }
.admin-row-main { display: grid; grid-template-columns: 56px 1fr 1fr; gap: 0.5rem; align-items: center; }
.admin-product-row input { padding: 0.45rem 0.6rem; border: 1.5px solid #c5ddf0; border-radius: 6px; font-family: inherit; font-size: 0.83rem; color: var(--deep-blue); background: #fff; width: 100%; }
.admin-product-row input:focus { outline: none; border-color: var(--mid-blue); }
.row-actions { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.admin-row-btn { border: none; border-radius: 6px; padding: 0.38rem 0.65rem; font-family: inherit; font-size: 0.75rem; font-weight: 800; cursor: pointer; white-space: nowrap; }
.admin-row-btn:hover { opacity: 0.8; }
.btn-save { background: #1565a8; color: #fff; }
.btn-stock { background: #e8f4fd; color: #1565a8; }
.btn-stock.out { background: #fdecea; color: #c0392b; }
.btn-delete { background: #fdecea; color: #c0392b; }
.admin-toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--deep-blue); color: #fff; padding: 0.7rem 1.2rem; border-radius: 10px; font-size: 0.85rem; font-weight: 700; z-index: 2000; opacity: 0; transform: translateY(10px); transition: all 0.3s; pointer-events: none; }
.admin-toast.show { opacity: 1; transform: none; }

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-body { flex-direction: column; padding-top: 1rem; }
  .hero-visual { max-width: 100%; }
  .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-big-icon { font-size: 5rem; }
  .fb1 { top: 0; right: 0; }
  .fb2 { bottom: 0.5rem; left: 0; }
  .admin-add-form { grid-template-columns: 1fr; }
  .admin-row-main { grid-template-columns: 48px 1fr; }
  .admin-row-main .edit-price { grid-column: 2; }
  .admin-photo-btn--block { min-width: 0; width: 100%; }
  .support-bot { bottom: 1rem; right: 1rem; }
  .support-bot__launcher { width: 48px; height: 48px; font-size: 1.2rem; }
  .support-bot__panel {
    width: min(260px, calc(100vw - 2rem));
    max-height: min(380px, 70vh);
  }
  .support-bot__messages { max-height: min(200px, 38vh); padding: 0.5rem 0.65rem; }
  .support-bot__prompts { padding: 0.5rem 0.65rem 0.65rem; }
  .support-bot__chip { font-size: 0.73rem; padding: 0.4rem 0.6rem; }
  section { padding: 3.5rem 4vw; }
  .products-section { padding-top: 3rem; padding-bottom: 3rem; }
  .category-tabs { gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.25rem; }
  .category-tabs::-webkit-scrollbar { display: none; }
  .category-tabs .tab { flex-shrink: 0; }
  .tab { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .product-body { padding: 0.6rem 0.65rem 0.4rem; }
  .product-name { font-size: 0.8rem; }
  .product-price { font-size: 1.1rem; }
  .product-actions { padding: 0.5rem 0.65rem 0.65rem; gap: 0.3rem; }
  .qty-input { font-size: 0.8rem; padding: 0.3rem 0.45rem; }
  .add-cart-btn { font-size: 0.75rem; padding: 0.4rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
}