/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --blue: #014cab;
  --blue-dark: #013a86;
  --blue-light: #e5eefb;
  --yellow: #F7CF05;
  --yellow-dark: #d8b400;

  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #14181f;

  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(1, 76, 171, 0.08);
  --shadow-md: 0 8px 24px rgba(1, 76, 171, 0.12);
  --shadow-lg: 0 16px 40px rgba(1, 76, 171, 0.18);

  --container: 1160px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 64px 0; scroll-margin-top: 88px; }
.section-tag {
  display: inline-block;
  color: var(--blue);
  background: var(--blue-light);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.section-subtitle {
  color: var(--gray-600);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 40px;
}
.section-head { text-align: center; }
.section-head .section-subtitle { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--yellow-dark); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-block { width: 100%; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  opacity: 0.88;
  transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { display: none; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  font-size: 24px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: 12px 20px 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-mobile .btn { margin-top: 14px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 60%, #012a63 100%);
  color: var(--white);
  overflow: hidden;
  padding: 56px 0 72px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 207, 5, 0.16);
  color: var(--yellow);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  width: fit-content;
}
.hero h1 {
  font-size: clamp(30px, 5.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 22px; color: var(--yellow); }
.hero-stat span { font-size: 13px; color: rgba(255, 255, 255, 0.75); }

/* Order form card */
.order-card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.order-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.order-card .order-sub {
  color: var(--gray-600);
  font-size: 13.5px;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

@media (min-width: 980px) {
  .hero .container { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}

/* ===========================
   WHY US
=========================== */
.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.why-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--gray-600); font-size: 14.5px; }

/* ===========================
   TENTANG KAMI (1 gambar desain, diupload dari admin)
=========================== */
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.about-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===========================
   MENU
=========================== */
.menu-section { background: var(--gray-50); }

/* Kategori tabs */
.kategori-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  margin-bottom: 28px;
  scrollbar-width: none;
}
.kategori-tabs::-webkit-scrollbar { display: none; }
.kategori-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 88px;
  padding: 14px 8px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.kategori-tab:active { transform: scale(0.96); }
.kategori-tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.15s ease;
}
.kategori-tab.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.kategori-tab.active .kategori-tab-icon { background: var(--yellow); }

.menu-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: var(--radius-full);
}
.menu-empty {
  text-align: center;
  color: var(--gray-600);
  padding: 40px 0;
  grid-column: 1 / -1;
}

.menu-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.menu-card-img { position: relative; height: 200px; background: var(--gray-200); }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.menu-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.menu-card-body h3 { font-size: 16px; font-weight: 700; }
.menu-card-body p { color: var(--gray-600); font-size: 13.5px; flex: 1; }
.menu-card-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.menu-card-harga {
  font-weight: 800;
  font-size: 19px;
  color: var(--blue-dark);
}
.menu-card-wa-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, background 0.15s ease;
}
.menu-card-wa-btn:hover { transform: scale(1.08); background: #1ebc59; }

/* ===========================
   CABANG
=========================== */
.cabang-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cabang-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
  display: flex;
  flex-direction: column;
}
.cabang-card.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-md);
}
.cabang-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  z-index: 2;
}
.cabang-card-img {
  height: 150px;
  background: var(--gray-200);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}
.cabang-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cabang-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.cabang-card-body { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.cabang-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.cabang-info { display: flex; gap: 10px; margin-bottom: 8px; font-size: 14px; color: var(--gray-600); }
.cabang-info .icon { flex-shrink: 0; color: var(--blue); }
.cabang-delivery-note {
  margin-top: 12px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}
.cabang-features {
  margin-top: 12px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cabang-features li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}
.cabang-features li::before { content: "✓"; flex-shrink: 0; }
.cabang-card-body .btn { margin-top: auto; }
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-400); }

/* ===========================
   PROMO (carousel, banner diupload dari admin)
=========================== */
.promo-carousel {
  position: relative;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}
.promo-carousel-track {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  scrollbar-width: none;
  aspect-ratio: 3 / 1;
}
.promo-carousel-track::-webkit-scrollbar { display: none; }
.promo-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: block;
}
.promo-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dark);
  border: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: background 0.15s ease, transform 0.15s ease;
}
.promo-nav:hover { background: var(--yellow); transform: translateY(-50%) scale(1.08); }
.promo-nav-prev { left: 12px; }
.promo-nav-next { right: 12px; }
.promo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.promo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.promo-dot.active { background: var(--blue); transform: scale(1.3); }
@media (max-width: 640px) {
  .promo-nav { width: 36px; height: 36px; font-size: 19px; }
  .promo-carousel-track { border-radius: 0; box-shadow: none; }
}

/* ===========================
   STRIP PROMO (teks, diedit dari admin)
=========================== */
.promo-strip-section { padding: 24px 0; }
.promo-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--blue-light);
  border: 1.5px solid rgba(1, 76, 171, 0.15);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.promo-strip-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-sm);
}
.promo-strip-text { flex: 1; }
.promo-strip-text h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.promo-strip-text p { font-size: 14px; color: var(--gray-600); }
.promo-strip .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .promo-strip { flex-direction: column; text-align: center; padding: 22px 20px; }
  .promo-strip .btn { width: 100%; }
}

/* ===========================
   TESTIMONI (marquee berjalan otomatis, mendukung banyak review)
=========================== */
.testi-marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.testi-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 20px;
  animation: testi-scroll linear infinite;
  animation-duration: var(--testi-duration, 40s);
}
.testi-marquee-wrap:hover .testi-marquee-track { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testi-marquee-track { animation: none; }
  .testi-marquee-wrap { overflow-x: auto; }
}
.testi-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--gray-100);
  width: 320px;
  flex-shrink: 0;
}
.testi-stars { color: var(--yellow-dark); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p.komentar { color: var(--gray-700); font-size: 14.5px; margin-bottom: 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 14px; }
.testi-person span { font-size: 12.5px; color: var(--gray-400); }

/* ===========================
   FAQ
=========================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--blue-light);
  border: 1px solid rgba(1, 76, 171, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
}
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item.open .faq-icon { background: var(--yellow); color: var(--blue-dark); transform: rotate(180deg); }
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq-item.open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 0 22px 20px;
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-cta {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  padding: 26px;
}
.faq-cta p { font-weight: 600; color: var(--blue-dark); margin-bottom: 14px; }

/* ===========================
   KONTAK / FORM
=========================== */
.kontak-section { background: var(--gray-50); }
.kontak-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.kontak-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.kontak-form .form-group textarea { resize: vertical; min-height: 100px; }
.form-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #e7f7ec;
  color: #1a7a3e;
  font-size: 14px;
  font-weight: 600;
}
.form-msg.show { display: block; }


/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.65); max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-cabang-item { margin-bottom: 14px; }
.footer-cabang-item strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 3px; }
.footer-cabang-item span { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}

/* ===========================
   FLOATING WHATSAPP BUTTON
=========================== */
.wa-float-wrap {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.wa-float-label {
  position: relative;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  animation: wa-label-pulse 2.6s ease-in-out infinite;
}
.wa-float-label::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
}
.wa-float {
  position: relative;
  height: 165px;
  width: auto;
  aspect-ratio: 650 / 944;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease;
  animation: wa-float-bounce 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); animation-play-state: paused; }
.wa-float-mascot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}
.wa-float-badge {
  position: absolute;
  bottom: 10px;
  right: -6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
@keyframes wa-float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes wa-label-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float, .wa-float-label { animation: none; }
}
@media (max-width: 480px) {
  .wa-float-wrap { bottom: 16px; right: 16px; gap: 8px; }
  .wa-float { height: 135px; }
  .wa-float-badge { width: 34px; height: 34px; bottom: 6px; }
  .wa-float-label { font-size: 12.5px; padding: 10px 14px; }
}

/* Utility */
.mt-8 { margin-top: 8px; }
