/* Dalatmilk Express — production stylesheet (no CDN framework) */
:root {
  --color-milk: #ffffff;
  --color-silk: #f8fafc;
  --color-sky: #e0f2fe;
  --color-fresh: #16a34a;
  --color-fresh-light: #dcfce7;
  --color-brand: #0369a1;
  --color-brand-dark: #075985;
  --color-shopee: #ee4d2d;
  --color-text: #334155;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-footer: #f1f5f9;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-soft: 0 10px 30px -10px rgba(3, 105, 161, 0.12);
  --shadow-card: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
  --font-heading: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --nav-h: 4.5rem;
  --hours-h: 2.35rem;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: min(72rem, 100% - 3rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--hours-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-milk) 0%, #f0f9ff 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--color-brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-brand-dark); }
:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 9999;
  padding: 0.75rem 1.25rem; background: var(--color-brand); color: #fff;
  font-weight: 700; border-radius: var(--radius-sm); text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-brand); line-height: 1.2; margin: 0 0 0.75em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
.text-accent { color: var(--color-fresh); }
.text-muted { color: var(--color-muted); }
.lead { font-size: 1.125rem; max-width: 36rem; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  background: var(--color-fresh-light); font-size: 0.6875rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--color-fresh);
}
.badge__dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--color-fresh); animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.75rem; border-radius: var(--radius-md); font-weight: 700;
  font-size: 0.9375rem; text-decoration: none; border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--color-brand); color: #fff; box-shadow: 0 8px 24px -6px rgba(3, 105, 161, 0.45); }
.btn--primary:hover { background: var(--color-brand-dark); color: #fff; }
.btn--shopee { background: linear-gradient(135deg, #ff5722, var(--color-shopee)); color: #fff; box-shadow: 0 8px 24px -6px rgba(238, 77, 45, 0.4); }
.btn--shopee:hover { color: #fff; }
.btn--ghost { background: var(--color-sky); color: var(--color-brand); }
.btn--ghost:hover { background: var(--color-brand); color: #fff; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* Cards */
.card {
  background: var(--color-milk); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: #bae6fd; }
.card--shadow { box-shadow: var(--shadow-soft); border-color: transparent; }
.card--sky { background: rgba(224, 242, 254, 0.5); border-color: transparent; }
.card--brand { background: var(--color-brand); color: #fff; border-color: transparent; }
.card--brand h3, .card--brand p { color: inherit; }

/* Header / Nav */
.site-header {
  position: fixed; inset: var(--hours-h) 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 242, 254, 0.8);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.12); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: inherit;
}
.brand__icon {
  width: 2.25rem; height: 2.25rem; border-radius: var(--radius-sm);
  background: var(--color-brand); color: #fff;
  display: grid; place-items: center;
}
.brand__name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--color-brand); }
.brand__name span { color: var(--color-fresh); }

.nav-desktop { display: none; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-desktop a {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-muted); text-decoration: none;
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--color-brand); }
.nav-desktop .nav-divider { border-left: 1px solid var(--color-border); padding-left: 1.5rem; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.5rem; height: 2.5rem; padding: 0; border: none; background: var(--color-sky);
  border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 1.25rem; margin: 0 auto;
  background: var(--color-brand); border-radius: 2px; transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: calc(var(--nav-h) + var(--hours-h)) 0 0 0; z-index: 99;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px);
  padding: 1.5rem; transform: translateX(100%); transition: transform var(--transition);
  overflow-y: auto;
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile li { border-bottom: 1px solid var(--color-border); }
.nav-mobile a {
  display: block; padding: 1rem 0; font-weight: 700; color: var(--color-text);
  text-decoration: none; font-size: 1rem;
}
.nav-mobile a:hover { color: var(--color-brand); }

.header-cta { display: none; }
.lang-switch {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
}
.lang-switch a {
  padding: 0.35rem 0.55rem; border-radius: 0.5rem;
  text-decoration: none; color: var(--color-muted);
}
.lang-switch a:hover, .lang-switch a[aria-current="true"] {
  background: var(--color-sky); color: var(--color-brand);
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .nav-mobile { display: none; }
}
@media (max-width: 767px) {
  .lang-switch--desktop { display: none; }
}

/* Main layout */
main { padding-top: calc(var(--nav-h) + var(--hours-h) + 2.5rem); padding-bottom: 4rem; }
.section { padding: 4rem 0; }
.section--alt { background: rgba(255, 255, 255, 0.6); }
.section__head { margin-bottom: 2.5rem; }
.section__head h2 { border-left: 4px solid var(--color-fresh); padding-left: 1rem; margin-bottom: 0.5rem; }
.section__head p { margin: 0; color: var(--color-muted); }

/* Bento grid */
.bento { display: grid; gap: 1.25rem; }
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(12, 1fr); }
  .bento__hero { grid-column: span 8; padding: 2.5rem 3rem; }
  .bento__side { grid-column: span 4; display: flex; flex-direction: column; justify-content: space-between; }
  .bento__third { grid-column: span 4; }
}
.bento__hero .btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Stats strip */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center; padding: 1.25rem; background: var(--color-milk);
  border-radius: var(--radius-lg); border: 1px solid var(--color-border);
}
.stat__value { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--color-brand); }
.stat__label { font-size: 0.75rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* Product scroll */
.product-scroll {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-scroll::-webkit-scrollbar { display: none; }
.product-card {
  flex: 0 0 18rem; scroll-snap-align: start;
}
.product-card__visual {
  height: 14rem; border-radius: var(--radius-md); margin-bottom: 1.25rem;
  display: grid; place-items: center; background: var(--color-sky);
  overflow: hidden;
}
.product-card__visual img {
  width: 100%; height: 100%; object-fit: contain; padding: 0.5rem;
}
.product-card__visual--orange { background: #fff7ed; }
.product-card__visual--green { background: var(--color-fresh-light); }
.product-card__meta { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-bottom: 1rem; }
.product-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--color-border);
}
.icon-btn {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-sm);
  display: grid; place-items: center; background: var(--color-sky);
  color: var(--color-brand); text-decoration: none; transition: var(--transition);
}
.icon-btn:hover { background: var(--color-brand); color: #fff; }
.icon-btn--shopee { background: var(--color-shopee); color: #fff; }

/* Order grid */
.order-grid { display: grid; gap: 1rem; max-width: 48rem; margin-inline: auto; }
@media (min-width: 640px) { .order-grid { grid-template-columns: repeat(4, 1fr); } }
.order-tile {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  padding: 2rem 1rem; text-align: center; text-decoration: none; color: inherit;
}
.order-tile__icon { font-size: 1.75rem; }
.order-tile--wa { background: var(--color-brand); color: #fff; border-color: transparent; }
.order-tile--wa:hover { color: #fff; transform: translateY(-4px); }
.order-tile--grab { border-color: rgba(0, 177, 79, 0.25); }
.order-tile--grab:hover { border-color: #00b14f; background: #ecfdf5; }
.order-tile--shopeefood { border-color: rgba(238, 77, 45, 0.25); }
.order-tile--shopeefood:hover { border-color: var(--color-shopee); background: #fff7ed; }
.order-tile--shopee { border-color: rgba(238, 77, 45, 0.35); background: #fff7ed; }
.order-tile__hint { font-size: 0.6875rem; color: var(--color-muted); font-weight: 500; margin: 0; }

/* Compare table */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.875rem;
  background: var(--color-milk); border-radius: var(--radius-md); overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--color-border);
}
.compare-table th { background: var(--color-sky); color: var(--color-brand); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.compare-table tr:last-child td { border-bottom: none; }

/* Promo ribbon */
.promo-ribbon {
  background: linear-gradient(90deg, #0369a1, #0284c7);
  color: #fff; text-align: center; padding: 0.5rem 1rem;
  font-size: 0.8125rem; font-weight: 600;
}
.promo-ribbon a { color: #fff; text-decoration: underline; }
.promo-ribbon { margin-top: calc(var(--hours-h) + var(--nav-h)); }

/* Product dual actions */
.product-actions { display: flex; gap: 0.35rem; }
.icon-btn--zalo { background: #0068ff; color: #fff; font-size: 0.5rem; font-weight: 800; }

/* Mobile dock expanded */
.mobile-dock { width: min(96%, 24rem); }
.mobile-dock__label { display: block; font-size: 0.5rem; margin-top: 0.15rem; }

/* FAQ */
.faq { max-width: 40rem; margin-inline: auto; }
.faq details {
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  margin-bottom: 0.75rem; background: var(--color-milk); overflow: hidden;
}
.faq summary {
  padding: 1.15rem 1.25rem; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.25rem; color: var(--color-brand); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq__body { padding: 0 1.25rem 1.15rem; color: var(--color-muted); font-size: 0.9375rem; }

/* Testimonials */
.testimonials { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.quote { font-style: italic; color: var(--color-muted); margin: 0 0 1rem; font-size: 0.9375rem; }
.quote-author { font-weight: 700; font-size: 0.875rem; color: var(--color-brand); }
.quote-role { font-size: 0.75rem; color: var(--color-muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--color-brand) 0%, #0284c7 100%);
  color: #fff; border-radius: var(--radius-xl); padding: 2.5rem;
  text-align: center; margin-top: 2rem;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-band .btn { background: #fff; color: var(--color-brand); }
.cta-band .btn:hover { background: var(--color-sky); color: var(--color-brand); }

/* Footer */
.site-footer { background: var(--color-footer); padding: 4rem 0 7rem; }
@media (min-width: 768px) { .site-footer { padding-bottom: 3rem; } }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--color-border); }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { font-size: 0.8125rem; color: var(--color-muted); max-width: 22rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-muted); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.875rem; font-weight: 600; text-decoration: none; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.6875rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--color-muted); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--color-brand); }

/* Mobile dock */
.mobile-dock {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  width: min(90%, 20rem); display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px);
  border: 1px solid var(--color-sky); border-radius: var(--radius-md);
  padding: 0.35rem; box-shadow: var(--shadow-card); z-index: 200;
}
@media (min-width: 768px) { .mobile-dock { display: none; } }
.mobile-dock a {
  flex: 1; text-align: center; padding: 0.65rem; text-decoration: none;
  color: var(--color-muted); font-size: 0.5rem; font-weight: 700; text-transform: uppercase;
}
.mobile-dock a:hover { color: var(--color-brand); }
.mobile-dock__fab {
  width: 3.5rem; height: 3.5rem; margin-top: -1.75rem;
  background: var(--color-brand); color: #fff; border-radius: var(--radius-md);
  display: grid; place-items: center; border: 4px solid #fff;
  box-shadow: 0 8px 20px -6px rgba(3, 105, 161, 0.5);
  text-decoration: none;
}
.mobile-dock__fab:hover { color: #fff; }

/* Page-specific: contact form */
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted); margin-bottom: 0.4rem; }
input, select, textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9375rem;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--color-brand); box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15);
}
.map-frame { width: 100%; height: 26rem; border: 0; border-radius: var(--radius-md); }

/* Breadcrumb */
.breadcrumb { font-size: 0.8125rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--color-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-brand); }

/* Utility */
.grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 2rem; }
.icon-lg { width: 3rem; height: 3rem; color: var(--color-brand); opacity: 0.25; }
.hidden { display: none !important; }
.form-success { color: var(--color-fresh); font-weight: 700; font-size: 0.875rem; }

/* Hero pro */
.hero {
  display: grid; gap: 2rem; align-items: center;
  padding: 2rem 0 1rem;
}
@media (min-width: 992px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; padding: 3rem 0 2rem; }
}
.hero__products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  align-items: end; justify-items: center;
}
.hero__product {
  max-height: 11rem; width: auto; object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(3, 105, 161, 0.15));
  transition: transform var(--transition);
}
.hero__product:hover { transform: translateY(-6px) scale(1.03); }
.hero__product--center { max-height: 13rem; }

/* Steps */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative; padding: 1.75rem 1.5rem 1.5rem;
  background: var(--color-milk); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--color-brand); color: #fff;
  font-weight: 700; font-size: 0.875rem; margin-bottom: 1rem;
}
.step h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.step p { margin: 0; font-size: 0.875rem; color: var(--color-muted); }

/* Trust pills */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  padding: 1.5rem 0;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--color-milk); border: 1px solid var(--color-border);
  font-size: 0.75rem; font-weight: 700; color: var(--color-text);
}
.trust-pill span { font-size: 1rem; }

/* Product grid (desktop) */
@media (min-width: 992px) {
  .product-scroll { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .product-card { flex: none; }
}

/* Stars */
.stars { color: #f59e0b; letter-spacing: 0.1em; font-size: 0.875rem; margin-bottom: 0.75rem; }

/* Floating WhatsApp */
.float-wa {
  position: fixed; right: 1.25rem; bottom: 5.5rem; z-index: 150;
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.55);
  text-decoration: none; transition: transform var(--transition);
}
.float-wa:hover { transform: scale(1.08); color: #fff; }
.float-wa svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }
@media (min-width: 768px) { .float-wa { bottom: 1.5rem; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(1.25rem); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Store hours bar */
.hours-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  text-align: center; padding: 0.65rem 1rem;
  background: var(--color-brand); color: #fff;
  font-size: 0.8125rem; font-weight: 600;
}
.hours-bar a { color: #fff; text-decoration: underline; }
.hours-bar__status {
  display: inline-block; margin-left: 0.5rem; padding: 0.15rem 0.5rem;
  border-radius: 999px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
}
.hours-bar__status--open { background: var(--color-fresh); color: #fff; }
.hours-bar__status--closed { background: rgba(255,255,255,0.25); color: #fff; }

/* Why choose */
.why-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  padding: 1.5rem; background: var(--color-milk);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-card:hover { border-color: #bae6fd; box-shadow: var(--shadow-soft); }
.why-card__icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.why-card p { margin: 0; font-size: 0.8125rem; color: var(--color-muted); }

/* Product description */
.product-card__desc { font-size: 0.8125rem; color: var(--color-muted); margin: -0.5rem 0 1rem; line-height: 1.5; }
.product-tag {
  display: inline-block; font-size: 0.5625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem; border-radius: 0.35rem;
  background: var(--color-sky); color: var(--color-brand); margin-right: 0.25rem;
}

/* Location block */
.location-block {
  display: grid; gap: 1.5rem; align-items: stretch;
}
@media (min-width: 992px) {
  .location-block { grid-template-columns: 1fr 1.2fr; }
}
.location-info { list-style: none; padding: 0; margin: 1rem 0 0; }
.location-info li { margin-bottom: 0.65rem; font-size: 0.9375rem; }
.location-map { min-height: 16rem; border-radius: var(--radius-md); overflow: hidden; }

/* Subscription */
.subscribe-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2rem 2.5rem; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
}
.subscribe-banner h2 { margin-bottom: 0.35rem; font-size: 1.5rem; }
.subscribe-banner p { margin: 0; color: var(--color-muted); max-width: 28rem; }

/* Float contact stack */
.float-contact {
  position: fixed; right: 1.25rem; bottom: 5.5rem; z-index: 150;
  display: flex; flex-direction: column; gap: 0.65rem;
}
@media (min-width: 768px) { .float-contact { bottom: 1.5rem; } }
.float-contact a {
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  display: grid; place-items: center; color: #fff; text-decoration: none;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.25);
  transition: transform var(--transition);
}
.float-contact a:hover { transform: scale(1.08); color: #fff; }
.float-wa { background: #25d366; }
.float-zalo { background: #0068ff; font-weight: 800; font-size: 0.625rem; letter-spacing: -0.02em; }
.float-contact svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }

/* Back to top */
.back-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 149;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--color-milk); border: 1px solid var(--color-border);
  color: var(--color-brand); display: grid; place-items: center;
  box-shadow: var(--shadow-card); cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.back-top.is-visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--color-brand); color: #fff; }
@media (max-width: 767px) {
  .back-top { bottom: 6.5rem; }
  .float-contact { bottom: 10rem; }
}
