/* layout.mobile.css - Layout chrome (mobile viewport <1024px)
   Scope: layout (topbar, header, nav, drawer, footer, float, wishlist, quick-view)
   Loaded via: media="(max-width:1023.98px)" - NOT inherited by desktop.css */

/* Header token */
:root {
  --header-bg: #FCE9EC;
}

/* Topbar desktop */
.topbar {
  background: #1F2937;
  color: #fff;
  font-size: 13px;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}
/* Hide topbar on mobile (<768) - mobile-topbar replaces it */
.topbar { display: none; }

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  gap: var(--space-4);
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}
.topbar__promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: 600;
}
.topbar__promo svg { flex-shrink: 0; }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
}
.topbar__item:hover { color: #fff; text-decoration: none; }
.topbar__item svg { flex-shrink: 0; }
.topbar__hotline-val {
  color: var(--color-accent);
  font-weight: 700;
}
.topbar__sep { opacity: .5; }
/* Hide email on small mobile */
.topbar__email,
.topbar__divider--email { display: none; }
.topbar__right .topbar__item:last-child { display: none; }

/* Topbar shows at tablet (768-1023) */
@media (min-width: 768px) {
  .topbar { display: flex; }
  .topbar__email,
  .topbar__divider--email { display: inline-flex; }
  .topbar__right .topbar__item:last-child { display: inline-flex; }
}

/* Nav border wrapper */
.site-nav-bar-border {
  background: var(--header-bg);
  border-top: none;
  border-bottom: 1px solid #f0c4cc;
}

/* Site header */
.site-header {
  background: var(--header-bg);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header__inner {
  display: none; /* desktop inner hidden on mobile */
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; }
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text-main {
  font-size: calc(44px * 0.45);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.3px;
  white-space: nowrap;
  text-transform: uppercase;
}
.logo-text-main span { color: var(--color-primary); }
.logo-text-sub {
  display: block;
  width: 100%;
  font-size: calc(52px * 0.215);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.05px;
  margin-top: 2px;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
}

/* Search */
.header-search {
  flex: 1;
  max-width: 560px;
  position: relative;
}
.header-search__form {
  display: flex;
  align-items: center;
  height: 48px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-10);
  overflow: hidden;
  background: #fff;
}
.header-search__icon {
  flex-shrink: 0;
  margin: 0 14px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
}
.header-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: transparent;
  padding: 0;
  min-width: 0;
}
.header-search__input::placeholder { color: var(--color-text-muted); }
.header-search__btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  height: 100%;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  font-family: var(--font-sans);
}
.header-search__btn:hover { background: var(--color-primary-dark); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-hotline-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-10);
  background: #fff;
  border: 1.5px solid #FBC8D0;
  text-decoration: none;
}
.header-hotline-pill:hover { text-decoration: none; background: #FFF0F3; }
.header-hotline-pill__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-hotline-pill__label {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.15;
  display: block;
}
.header-hotline-pill__number {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.2px;
  display: block;
  line-height: 1.15;
}
.header-zalo-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-10);
  background: var(--color-zalo);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--transition);
}
.header-zalo-btn:hover { background: #0052cc; text-decoration: none; color: #fff; }
.header-cart {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-10);
  background: #fff;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.header-cart:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-8);
  cursor: pointer;
  padding: 9px 8px;
  flex-shrink: 0;
  order: 10;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Nav bar */
.site-nav-bar {
  background: #fff;
  border-top: 1px solid var(--color-border-soft);
}
.site-nav-bar__inner {
  display: none; /* nav hidden on mobile */
  align-items: center;
  gap: 0;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 24px;
}
.flat-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 46px;
  padding: 0 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-bottom-color .15s;
  flex-shrink: 0;
}
.flat-nav-item svg { flex-shrink: 0; transition: color .15s; }
.flat-nav-item:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  text-decoration: none;
}
.flat-nav-item.is-active {
  font-weight: 700;
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.flat-nav-item.is-active svg,
.flat-nav-item:hover svg { color: var(--color-primary); }
.nav-link.is-active {
  font-weight: 700;
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.nav-served {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-success);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile topbar strip */
.mobile-topbar {
  background: #1F2937;
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.mobile-topbar__accent { color: var(--color-accent); font-weight: 600; }
.mobile-topbar__sep { opacity: .5; }

/* Hide mobile-topbar at tablet */
@media (min-width: 768px) {
  .mobile-topbar { display: none; }
}

/* Mobile header main row */
.mobile-header {
  background: var(--header-bg);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: none;
}
.mobile-logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mobile-search {
  flex: 1;
  display: flex;
  align-items: center;
  height: 38px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-8);
  background: #fff;
  padding: 0 10px;
  gap: 8px;
  min-width: 0;
}
.mobile-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  background: transparent;
  min-width: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
}
.mobile-cart {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-8);
  background: #fff;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-text);
}
.mobile-cart:hover { color: var(--color-primary); border-color: var(--color-primary); text-decoration: none; }
.mobile-cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Mobile nav drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 480;
  opacity: 0;
  transition: opacity .25s ease;
}
.mobile-nav-overlay.is-open {
  display: block;
  opacity: 1;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 490;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .25s ease;
}
.mobile-nav-drawer.is-open {
  transform: translateX(0);
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 16px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
  background: #fff;
}
.mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text);
}
.mobile-nav__logo:hover { text-decoration: none; }
.mobile-nav__logo-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.2px;
}
.mobile-nav__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--color-text);
  transition: background var(--transition);
}
.mobile-nav__close:hover { background: #f1f2f4; }
.mobile-nav__list {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 6px 0;
}
.mobile-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
  transition: background .12s, color .12s;
  font-family: var(--font-sans);
}
.mobile-nav__item:last-child { border-bottom: none; }
.mobile-nav__item:hover {
  background: #fef2f2;
  color: var(--color-primary);
  text-decoration: none;
}
.mobile-nav__item.is-active {
  color: var(--color-primary);
  font-weight: 700;
  background: #fef2f2;
}
.mobile-nav__item-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-8);
  background: #f3f4f6;
  flex-shrink: 0;
  transition: background .12s, color .12s;
}
.mobile-nav__item.is-active .mobile-nav__item-icon,
.mobile-nav__item:hover .mobile-nav__item-icon {
  background: rgba(200,16,46,.1);
  color: var(--color-primary);
}
.mobile-nav__item-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav__accordion-trigger[aria-expanded="true"] .mobile-nav__chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}
.mobile-nav__accordion-trigger { border-bottom: none; }
.mobile-nav__sub-item.is-active {
  color: var(--color-primary);
  font-weight: 600;
}
.mobile-nav__footer {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--color-border);
  background: #f9fafb;
}
.mobile-nav__contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  border-radius: var(--radius-8);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
}
.mobile-nav__contact-btn:hover { opacity: .88; text-decoration: none; }
.mobile-nav__contact-btn--phone {
  background: var(--color-primary);
  color: #fff;
}
.mobile-nav__contact-btn--zalo {
  background: var(--color-zalo);
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFFFFF 55%);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-12) 0;
  overflow: hidden;
}
.product-tab {
  padding: var(--space-2) var(--space-5);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.product-tab:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }
.product-tab.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* Product card (storefront version - extends core/components.css base) */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, #EFF0F3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card__discount {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-6);
}
.product-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__sku { font-size: 11px; color: var(--color-text-muted); font-weight: 500; }
.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
  margin: 0;
}
.product-card__name a { color: inherit; text-decoration: none; }
.product-card__name a:hover { color: var(--color-primary); }
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card__sold { font-size: 11px; color: var(--color-text-muted); }
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}
.product-card__price-main {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.3px;
}
.product-card__price-original {
  font-size: 12px;
  color: var(--color-text-soft);
  text-decoration: line-through;
}
.product-card__price-main--sm { font-size: 17px; }
.product-card__actions {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.product-card__add-btn {
  flex: 1;
  min-width: 0;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-8);
  padding: 9px 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: background var(--transition);
}
.product-card__add-btn:hover { background: var(--color-primary-dark); }
.product-card__call-btn {
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.product-card__call-btn:hover { background: #FDE8EC; }
.product-card__zalo-btn {
  width: 36px;
  height: 36px;
  background: var(--color-zalo);
  color: #fff;
  border: none;
  border-radius: var(--radius-8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.product-card__zalo-btn:hover { background: #0052cc; }
.add-to-cart-form { margin-top: auto; }
.add-to-cart-btn { width: 100%; }

/* Breadcrumb */
.breadcrumb { padding: var(--space-3) 0; }
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-1);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
}
.breadcrumb__item { display: inline-flex; align-items: center; gap: var(--space-1); }
.breadcrumb__link { color: var(--color-text-muted); text-decoration: none; }
.breadcrumb__link:hover { color: var(--color-primary); text-decoration: underline; }
.breadcrumb__sep { color: var(--color-text-soft); display: flex; align-items: center; }
.breadcrumb__current { color: var(--color-text); font-weight: 600; }
.process-section .section-title { color: #fff; }

/* Footer */
/* ===== Footer (mobile-first) ===== */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 20px 28px;
  max-width: var(--container-max);
  margin-inline: auto;
}
/* tablet: 2 cols */
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; padding: 48px 24px 32px; }
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.footer-col p { margin-bottom: 0; line-height: 1.7; color: var(--color-footer-text); }
.footer-col a { color: var(--color-footer-text); text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: none; }

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo:hover { text-decoration: none; }
.footer-logo .logo-text-main { color: #fff; }
.footer-logo .logo-text-main span { color: #e8314a; }
.footer-logo .logo-text-sub { color: var(--color-footer-muted); }

/* Company info */
.footer-info-row { color: var(--color-footer-text); }
.footer-company-name { font-weight: 700; color: #fff; margin-bottom: 14px; font-size: 14px; line-height: 1.4; }
.footer-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-info-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; color: var(--color-footer-muted); }
.footer-info-item span { min-width: 0; }
.footer-info-ic {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  fill: none; stroke: var(--color-footer-muted); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.lyt-footer-email-link { color: inherit; transition: color var(--transition); }
.lyt-footer-email-link:hover { color: #fff; }

/* Socials */
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.footer-social-btn svg { width: 17px; height: 17px; }
/* Brand colour as default background (shows even for placeholders) */
.footer-social-btn--fb       { background: #1877F2; }
.footer-social-btn--linkedin { background: #0A66C2; }
.footer-social-btn--tiktok   { background: #000; border: 1px solid rgba(255,255,255,.25); }
.footer-social-btn--x        { background: #000; border: 1px solid rgba(255,255,255,.25); }
.footer-social-btn--yt       { background: #FF0000; }
/* Active-press feedback for touch (scale instead of lift) */
.footer-social-btn:active { transform: scale(.94); }
/* Disabled placeholder (URL not configured): full brand colour, span does not navigate — keep cursor:default */
.footer-social-btn--tbd { cursor: default; }

/* Link lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links li a {
  color: var(--color-footer-muted);
  font-size: 13px;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links li a:hover { color: #fff; }

/* Location column: map + address + hours + directions */
.footer-location { display: flex; flex-direction: column; }
.footer-map {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: var(--radius-10);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  margin-bottom: 14px;
}
.footer-map iframe { width: 100%; height: 100%; border: 0; display: block; }
/* Directions button: floating overlay on the map (bottom-right) */
.footer-directions-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  color: var(--color-primary, #C8102E);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
}
.footer-directions-btn:hover {
  background: var(--color-primary, #C8102E);
  color: #fff;
  text-decoration: none;
}
.footer-directions-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Trust / press strip (slot — hidden until real logos added), sits below the map */
.footer-trust {
  margin-top: 4px;
  text-align: center;
}
.footer-trust--empty { display: none; }
.footer-trust__title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--color-footer-muted);
}
.footer-trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.footer-trust__logos img {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.7);
  opacity: .7;
  transition: filter var(--transition), opacity var(--transition);
}
.footer-trust__logos a:hover img,
.footer-trust__logos img:hover { filter: none; opacity: 1; }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 18px 20px;
  font-size: 12px;
  color: var(--color-footer-muted);
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
  line-height: 1.6;
}
/* Extracted from inline-style view */
.topbar__item--tracuu { color: rgba(255,255,255,.85); }
.lyt-flash-wrap { padding-top: var(--space-4); }

/* Floating buttons */
.float-buttons {
  position: fixed;
  right: 24px;
  bottom: 88px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 500;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.float-btn--call {
  background: var(--color-primary);
  color: #fff;
  animation: pulse-call 2.5s infinite;
}

@keyframes pulse-call {
  0%   { box-shadow: 0 0 0 0 rgba(200,16,46,.5), var(--shadow-md); }
  70%  { box-shadow: 0 0 0 10px rgba(200,16,46,0), var(--shadow-md); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46,0), var(--shadow-md); }
}

/* Pagination */
.pagination { margin-top: var(--space-8); display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.pagination__list { display: flex; align-items: center; gap: var(--space-1); list-style: none; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
.pagination__link { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 var(--space-2); border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: var(--font-size-sm); color: var(--color-text); text-decoration: none; transition: all var(--transition); }
.pagination__link:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }
.pagination__link.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); font-weight: 700; }
.cta-callback__form-box { background: #fff; border-radius: var(--radius-16); padding: var(--space-8); box-shadow: var(--shadow-lg); }.gallery__thumb.is-active { border-color: var(--color-primary); }
.qty-control { display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.qty-btn { width: 36px; height: 44px; background: var(--color-bg-soft); border: none; cursor: pointer; font-size: var(--font-size-lg); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--color-border); }
.qty-input { width: 48px; height: 44px; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); text-align: center; font-size: var(--font-size-base); font-weight: 600; outline: none; }

/* Prose */
.prose { line-height: var(--line-height-loose); }
.prose h2 { font-size: var(--font-size-2xl); margin-top: var(--space-8); }
.prose h3 { font-size: var(--font-size-xl); margin-top: var(--space-6); }
.prose a { color: var(--color-primary); }
.prose ul, .prose ol { margin-bottom: var(--space-4); }
.prose li { margin-bottom: var(--space-2); }
.prose img { max-width: 100%; border-radius: var(--radius-md); height: auto; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-4); }
.prose th, .prose td { padding: var(--space-2) var(--space-3); border: 1px solid var(--color-border); text-align: left; }
.prose th { background: var(--color-bg-soft); font-weight: 700; }
.prose blockquote { border-left: 4px solid var(--color-primary); padding-left: var(--space-4); margin-left: 0; color: var(--color-text-muted); font-style: italic; }

/* Accessibility */
.sr-only-focusable:focus {
  position: fixed; top: var(--space-2); left: var(--space-2);
  width: auto; height: auto; padding: var(--space-2) var(--space-4);
  clip: auto; z-index: 9999; background: var(--color-primary); color: #fff;
  border-radius: var(--radius-md); font-weight: 700;
}
.section-heading .section-title { margin-bottom: var(--space-2); }

/* Flash messages (backward compat) */
.flash { padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); margin-bottom: var(--space-4); font-size: var(--font-size-sm); }
.flash-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.flash-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.flash-info    { background: #DBEAFE; color: #1E40AF; border: 1px solid #BFDBFE; }

/* Overflow safety */
html, body { overflow-x: clip; }

/* Wishlist */
.product-card__img-wrap-outer { position: relative; }
.product-card__hover-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: opacity .15s;
  z-index: 5;
}
.product-card:hover .product-card__hover-actions,
.product-card__hover-actions:focus-within { opacity: 1; }
.product-card__qv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  cursor: pointer;
  color: #374151;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  transition: background .12s, color .12s, transform .1s;
}
.product-card__qv-btn:hover {
  background: #fff;
  color: var(--color-primary);
  transform: scale(1.08);
}
.product-card .wl-heart-btn {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.product-card .wl-heart-btn:hover { background: #fff; }
.wl-page { padding: 2rem 0 4rem; }
.wl-page__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.wl-page__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}
.wl-page__count {
  display: inline-flex;
  align-items: center;
  padding: .2rem .65rem;
  background: #FDE8EC;
  color: var(--color-primary);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
}
.wl-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 4rem 1rem;
  text-align: center;
}
.wl-empty__text { color: var(--color-text-muted); font-size: 1rem; margin: 0; }
.wl-grid { margin-top: 0; }
.wl-heart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s, transform .12s;
  padding: 0;
  color: var(--color-text-muted);
}
.wl-heart-btn:hover {
  background: rgba(200,16,46,.08);
  color: var(--color-primary);
  transform: scale(1.1);
}
.wl-heart-btn.is-active { color: var(--color-primary); }
.wl-heart-btn.is-active svg { fill: var(--color-primary); stroke: var(--color-primary); }
.wl-heart-btn.wl-pop { animation: wl-pop .35s ease; }

@keyframes wl-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(.9); }
  100% { transform: scale(1); }
}

/* Quick view */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
}
.qv-overlay.is-open { opacity: 1; visibility: visible; }
.qv-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-12);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  transform: translateY(16px) scale(.98);
  transition: transform .2s;
}
.qv-overlay.is-open .qv-modal { transform: translateY(0) scale(1); }
.qv-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  color: var(--color-text-muted);
  font-size: .9375rem;
  gap: .75rem;
}
.qv-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: qv-spin .7s linear infinite;
}
@keyframes qv-spin { to { transform: rotate(360deg); } }
/* Source: base=2-col, max-width:600px -> 1-col; inverted to mobile-first: base=1-col, min-width:601px -> 2-col (601 kept for parity) */
.qv-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 601px) {
  .qv-inner { grid-template-columns: 1fr 1fr; }
}
.qv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #F3F4F6;
  border-radius: 50%;
  cursor: pointer;
  color: #374151;
  z-index: 10;
  transition: background .15s, color .15s;
}
.qv-close:hover { background: var(--color-border); color: #111827; }
/* Source: base=left-radius+280px; max-width:600px -> top-radius+200px; inverted mobile-first */
.qv-img-col {
  position: relative;
  background: var(--color-bg-warm);
  border-radius: var(--radius-12) var(--radius-12) 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
@media (min-width: 601px) {
  .qv-img-col {
    border-radius: var(--radius-12) 0 0 var(--radius-12);
    min-height: 280px;
  }
}
.qv-img { width: 100%; height: auto; max-height: 380px; object-fit: contain; padding: 1rem; }
.qv-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: var(--radius-4);
}
.qv-info-col {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.qv-name { font-size: 1.125rem; font-weight: 700; line-height: 1.35; color: #111827; margin: 0; }
.qv-name a { color: inherit; text-decoration: none; }
.qv-name a:hover { color: var(--color-primary); }
.qv-rating { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--color-text-muted); }
.qv-rating__count { font-size: .8125rem; }
.qv-rating__none { font-style: italic; font-size: .8125rem; color: var(--color-text-soft); }
.qv-price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.qv-price__sale { font-size: 1.375rem; font-weight: 800; color: var(--color-primary); }
.qv-price__original { font-size: .9375rem; color: var(--color-text-soft); text-decoration: line-through; }
.qv-price__main { font-size: 1.375rem; font-weight: 800; color: #111827; }
.qv-desc { font-size: .9rem; color: #4B5563; line-height: 1.6; margin: 0; }
.qv-atc-form { margin-top: auto; }
.qv-actions { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.qv-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-6);
  overflow: hidden;
  height: 40px;
  flex-shrink: 0;
}
.qv-qty__btn {
  width: 32px;
  height: 40px;
  border: none;
  background: #F9FAFB;
  cursor: pointer;
  font-size: 1.1rem;
  color: #374151;
  transition: background .12s;
  line-height: 1;
}
.qv-qty__btn:hover { background: #F3F4F6; }
.qv-qty__input {
  width: 40px;
  height: 40px;
  border: none;
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  text-align: center;
  font-size: .9375rem;
  font-weight: 600;
  outline: none;
  color: #111827;
  -moz-appearance: textfield;
}
.qv-qty__input::-webkit-inner-spin-button,
.qv-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 0 1rem;
  height: 40px;
  border: none;
  border-radius: var(--radius-6);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.qv-btn:active { transform: scale(.97); }
.qv-btn--primary { background: var(--color-primary); color: #fff; flex: 1; }
.qv-btn--primary:hover { background: #a80d25; /* TODO token - source literal; --color-primary-dark=#9E0C24 != #a80d25 */ }
.qv-btn--primary:disabled { opacity: .7; cursor: not-allowed; }
.qv-btn--wishlist.is-active { background: #FDE8EC; border-color: var(--color-primary); color: var(--color-primary); }
.qv-detail-link { font-size: .875rem; color: var(--color-primary); text-decoration: none; font-weight: 600; margin-top: .25rem; }
.qv-detail-link:hover { text-decoration: underline; }
