@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

/* ============================================================
   GOSHOP Shop CSS — Ngành LED / Thiết bị điện
   Đợt 1: layout buyer mới (header sticky, banner cuộn, tab dính)
   Màu chủ đạo qua --shop (inject từ PHP config)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --shop: #1D9E75;
  --shop-dark: color-mix(in srgb, var(--shop) 75%, #000);
  --shop-light: color-mix(in srgb, var(--shop) 15%, #fff);
  --text-primary: #212121;
  --text-secondary: #555555;
  --text-muted: #757575;
  --border: #E0DED6;
  --surface: #F8F7F4;
  --white: #fff;
  --danger: #E24B4A;
  --radius: 8px;
  --font: 'Roboto', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --container: 1400px;
  --header-h: 72px;
}

html, body { overflow-x: hidden; }

body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--shop); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   HEADER — sticky, gọn ~1/10 vh (72px)
   ============================================================ */
.shop-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex; align-items: stretch;
}
.shop-header-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 24px;
}

.shop-brand {
  display: flex; align-items: center; gap: 12px;
  min-width: 0; flex-shrink: 1;
}
.shop-brand:hover { color: inherit; }

.shop-logo {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--shop-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--shop-dark);
  overflow: hidden; flex-shrink: 0;
}
.shop-logo img { width: 100%; height: 100%; object-fit: cover; }

.shop-brand-text { min-width: 0; }
.shop-name {
  font-size: 16px; font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.shop-slogan {
  font-size: 12px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 2px;
}

.shop-rating {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--text-secondary);
  padding: 6px 10px; border-radius: var(--radius);
  transition: background .15s;
}
.shop-rating:hover { background: var(--surface); color: var(--text-primary); }
.shop-rating .rating-val { font-weight: 600; color: var(--text-primary); }
.shop-rating .rating-count { color: var(--text-muted); font-size: 12px; }

.shop-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--shop-dark);
  padding: 6px 12px; border-radius: var(--radius);
  background: var(--shop-light);
  transition: background .15s;
}
.shop-phone:hover { background: color-mix(in srgb, var(--shop) 20%, #fff); color: var(--shop-dark); }

/* ============================================================
   BANNER — cuộn theo trang, tối đa ~1/3 vh
   ============================================================ */
.shop-banner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  aspect-ratio: 4 / 1;
  max-height: 33vh;
  overflow: hidden;
  background: var(--surface);
}
.shop-banner img { width: 100%; height: 100%; object-fit: cover; }
.banner-fallback { width: 100%; height: 100%; }

/* ============================================================
   TAB BAR — sticky khi chạm sát dưới header
   ============================================================ */
.shop-tabs {
  position: sticky; top: var(--header-h); z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.shop-tabs-inner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: stretch;
}

.tab-item { position: relative; }
.tab-link {
  display: block; padding: 14px 20px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--text-secondary);
  border-bottom: 2.5px solid transparent;
  transition: color .15s, border-color .15s;
}
.tab-link:hover { color: var(--text-primary); }
.tab-item.active .tab-link {
  color: var(--shop); border-bottom-color: var(--shop);
}

/* Dropdown nhóm sản phẩm — chỉ hiện trên hover (desktop) */
.tab-dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  padding: 6px 0; margin-top: 4px;
  display: none; z-index: 120;
}
.dd-item {
  display: block; padding: 8px 16px;
  font-size: 13px; color: var(--text-secondary);
}
.dd-item:hover { background: var(--shop-light); color: var(--shop-dark); }

@media (hover: hover) {
  .tab-item:hover .tab-dropdown,
  .tab-item:focus-within .tab-dropdown { display: block; }
}

/* ============================================================
   MAIN + PAGE LAYOUT
   ============================================================ */
.shop-main {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
}
.shop-page { padding: 16px 20px; }

.shop-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
}

/* Sidebar trái — nhóm sản phẩm */
.shop-sidebar {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
  height: fit-content;
  position: sticky; top: calc(var(--header-h) + 60px);
}
.sidebar-toggle {
  display: none;
  width: 100%; padding: 10px 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  align-items: center; justify-content: space-between;
}
.sidebar-toggle svg { transition: transform .2s; }
.sidebar-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list > li { border-bottom: 1px solid var(--border); }
.sidebar-list > li:last-child { border-bottom: none; }
.sb-item {
  display: block; padding: 9px 8px;
  font-size: 13px; color: var(--text-secondary);
  transition: color .15s;
}
.sb-item:hover { color: var(--shop); }
.sb-item.active {
  color: var(--shop-dark); font-weight: 600;
  background: var(--shop-light); border-radius: 6px;
}

.shop-main-col { min-width: 0; }

/* ============================================================
   TOOLBAR + FLASH BANNER
   ============================================================ */
.flash-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; margin-bottom: 12px;
  background: linear-gradient(90deg, #FFF3E0, #FFE0B2);
  border-radius: var(--radius);
  font-size: 13px; color: #7B3F00;
}
.flash-label { font-weight: 700; color: #D85A30; }
.flash-timer { margin-left: auto; font-weight: 600; font-family: monospace; }

.toolbar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.prod-count { font-size: 12px; color: var(--text-muted); }
.sort-sel {
  margin-left: auto;
  font-size: 12px; padding: 6px 10px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: #fff; color: var(--text-secondary);
}

/* ============================================================
   LƯỚI SẢN PHẨM — số cột từ setting shop (--cols)
   ============================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 5), minmax(0, 1fr));
  gap: 10px;
}

.prod-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.prod-card:hover {
  border-color: var(--shop);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--shop) 20%, transparent);
}
.prod-img {
  aspect-ratio: 1/1; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-badge {
  position: absolute; top: 6px; left: 6px;
  font-size: 9px; padding: 2px 6px; border-radius: 5px; font-weight: 600;
}
.badge-sale { background: #FAECE7; color: #993C1D; }
.badge-new  { background: var(--shop-light); color: var(--shop-dark); }
.prod-body  { padding: 10px; }
.prod-name  {
  font-size: 12px; font-weight: 500; color: var(--text-primary);
  line-height: 1.4; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 34px;
}
.prod-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 3px; }
.prod-price { font-size: 14px; font-weight: 600; color: #D85A30; }
.prod-orig  { font-size: 11px; color: var(--text-muted); text-decoration: line-through; }
.prod-foot  { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; }
.prod-rating { font-size: 10px; color: var(--text-muted); }
.btn-add {
  padding: 4px 10px; border-radius: var(--radius); border: none;
  background: var(--shop); color: #fff; font-size: 11px;
  transition: background .15s;
}
.btn-add:hover { background: var(--shop-dark); }

.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted); font-size: 14px;
}
.empty-state .btn-primary {
  display: inline-block; margin-top: 12px;
  padding: 8px 20px; border-radius: var(--radius);
  background: var(--shop); color: #fff; font-size: 13px;
}

/* ============================================================
   CHI TIẾT SẢN PHẨM
   ============================================================ */
.detail-wrap { max-width: 900px; margin: 0 auto; padding: 20px; overflow: hidden; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.detail-img-main { aspect-ratio: 1/1; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.detail-img-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumb-row {
  display: flex; gap: 6px; margin-top: 8px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
  padding-bottom: 4px;
}
.detail-thumb-row::-webkit-scrollbar { height: 4px; }
.detail-thumb-row::-webkit-scrollbar-track { background: transparent; }
.detail-thumb-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.detail-thumb { width: 56px; height: 56px; border-radius: 7px; border: 1.5px solid var(--border); overflow: hidden; cursor: pointer; flex-shrink: 0; }
.detail-thumb.active { border-color: var(--shop); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-name  { font-size: 17px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }
.detail-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.detail-price { font-size: 24px; font-weight: 700; color: #D85A30; }
.detail-orig  { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.detail-save  { font-size: 11px; padding: 2px 7px; border-radius: 6px; background: #FAECE7; color: #993C1D; font-weight: 600; }
.pts-earn     { font-size: 10px; padding: 1px 6px; border-radius: 6px; background: var(--shop-light); color: var(--shop-dark); }
.rating-bar   { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 12px; flex-wrap: wrap; }
.var-section  { margin-bottom: 10px; }
.var-label    { font-size: 11px; color: var(--text-secondary); margin-bottom: 5px; }
.var-chips    { display: flex; gap: 6px; flex-wrap: wrap; }
.var-chip     { padding: 4px 12px; border-radius: var(--radius); border: 1px solid var(--border); background: #fff; font-size: 12px; cursor: pointer; transition: all .15s; }
.var-chip:hover { border-color: var(--shop); }
.var-chip.active { border-color: var(--shop); background: var(--shop-light); color: var(--shop-dark); font-weight: 500; }
.qty-row      { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.qty-ctrl     { display: flex; align-items: center; gap: 8px; }
.qty-btn      { width: 30px; height: 30px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.qty-btn:hover { background: var(--shop-light); border-color: var(--shop); }
.qty-val      { font-size: 15px; font-weight: 600; min-width: 28px; text-align: center; }
.detail-btns  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.btn-cart-big { padding: 11px; border-radius: var(--radius); border: 1.5px solid var(--shop); background: transparent; color: var(--shop); font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; transition: background .15s; }
.btn-cart-big:hover { background: var(--shop-light); }
.btn-buy-big  { padding: 11px; border-radius: var(--radius); border: none; background: #D85A30; color: #fff; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; transition: background .15s; }
.btn-buy-big:hover { background: #993C1D; }
.spec-block   { background: var(--surface); border-radius: 10px; padding: 12px 14px; border: 1px solid var(--border); margin-bottom: 12px; }
.spec-title   { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.spec-row     { display: flex; justify-content: space-between; font-size: 12px; padding: 5px 0; border-bottom: 1px solid var(--border); }
.spec-row:last-child { border-bottom: none; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-wrap { max-width: 560px; margin: 20px auto; }
.form-section  { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.form-title    { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.form-group    { display: flex; flex-direction: column; gap: 4px; margin-bottom: 9px; }
.form-label    { font-size: 11px; color: var(--text-secondary); }
.form-label .req { color: var(--danger); }
.form-input    { font-size: 12px; padding: 7px 10px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); color: var(--text-primary); width: 100%; transition: border-color .15s; }
.form-input:focus { outline: none; border-color: var(--shop); background: #fff; }
.form-hint     { font-size: 10px; color: var(--text-muted); margin-top: 3px; line-height: 1.5; }
.ship-option   { display: flex; align-items: center; gap: 8px; padding: 9px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 6px; cursor: pointer; transition: border-color .15s; }
.ship-option:hover { border-color: var(--shop); }
.ship-option.sel { border-color: var(--shop); background: var(--shop-light); }
.ship-radio    { width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ship-radio.sel { border-color: var(--shop); background: var(--shop); }
.ship-radio.sel::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.ship-name     { font-size: 12px; font-weight: 500; flex: 1; }
.ship-fee      { font-size: 11px; color: var(--shop); font-weight: 600; }
.ship-time     { font-size: 10px; color: var(--text-muted); }
.points-box    { background: var(--shop-light); border: 1px solid color-mix(in srgb, var(--shop) 40%, #fff); border-radius: var(--radius); padding: 9px 12px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.consent-row   { display: flex; align-items: flex-start; gap: 7px; font-size: 11px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 10px; cursor: pointer; }
.consent-row input { margin-top: 2px; accent-color: var(--shop); flex-shrink: 0; }
.btn-place     { width: 100%; padding: 13px; border-radius: var(--radius); border: none; background: #D85A30; color: #fff; font-size: 14px; font-weight: 600; transition: background .15s; }
.btn-place:hover { background: #993C1D; }

/* ============================================================
   ĐÁNH GIÁ
   ============================================================ */
.review-card  { padding: 12px 0; border-bottom: 1px solid var(--border); }
.review-card:last-child { border-bottom: none; }
.review-head  { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.review-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--shop-light); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--shop-dark); flex-shrink: 0; }
.review-stars { font-size: 12px; color: #EF9F27; }
.review-text  { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.review-reply { background: var(--surface); border-left: 2.5px solid var(--shop); padding: 6px 10px; border-radius: 0 6px 6px 0; margin-top: 6px; font-size: 11px; color: var(--text-secondary); }

/* ============================================================
   FOOTER — MXH + text
   ============================================================ */
.shop-footer {
  background: #fff; border-top: 1px solid var(--border);
  margin-top: 32px; padding: 20px 16px;
}
.shop-footer-inner {
  max-width: var(--container); margin: 0 auto;
  text-align: center;
}
.footer-social {
  display: flex; gap: 18px; justify-content: center;
  margin-bottom: 12px; flex-wrap: wrap;
}
.footer-social a {
  color: var(--text-muted); font-size: 13px;
  padding: 4px 8px; border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--shop-light); color: var(--shop-dark); }
.footer-text {
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
}

/* ============================================================
   FLOATING WIDGETS (GoShop + Livestream) — fixed góc phải
   ============================================================ */
.floating-widgets {
  position: fixed; right: 16px; bottom: 90px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 150;
}
.fw-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .15s;
  color: #fff;
}
.fw-btn:hover { transform: scale(1.06); color: #fff; }
.fw-goshop     { background: var(--shop); }
.fw-livestream { background: #D85A30; }

/* ============================================================
   CART BAR
   ============================================================ */
.cart-bar     { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 10px 16px; display: flex; align-items: center; gap: 10px; z-index: 200; }
.cart-icon-wrap { position: relative; cursor: pointer; }
.cart-count   { position: absolute; top: -6px; right: -6px; background: var(--danger); color: #fff; font-size: 9px; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.btn-order    { padding: 8px 20px; border-radius: var(--radius); background: #D85A30; color: #fff; font-size: 13px; font-weight: 600; transition: background .15s; }
.btn-order:hover { background: #993C1D; color: #fff; }

/* ============================================================
   Mô tả sản phẩm — ảnh responsive
   ============================================================ */
.prod-desc-content,
.prod-desc-content * { overflow: visible !important; max-height: none !important; }
.prod-desc-content img {
  width: 100% !important; height: auto !important;
  aspect-ratio: unset !important; object-fit: contain !important;
  display: block !important; border-radius: 8px; margin: 8px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 768-1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .shop-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 14px; }
  .prod-grid   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-header-inner { gap: 14px; }
  .shop-slogan { display: none; }
}

/* Mobile: <768px — 1 block duy nhất, đã gộp tất cả */
@media (max-width: 767px) {
  :root { --header-h: 60px; }

  /* --- Header --- */
  .shop-header-inner { padding: 8px 12px; gap: 10px; }
  .shop-logo         { width: 40px; height: 40px; font-size: 17px; }
  .shop-name         { font-size: 14px; }
  .shop-slogan       { display: none; }
  .shop-rating .rating-count { display: none; }
  .shop-phone span   { display: none; }
  .shop-phone        { padding: 6px 10px; }

  /* --- Banner --- */
  .shop-banner { aspect-ratio: 2.5 / 1; max-height: 28vh; }

  /* --- Tab bar: full-width nền, cuộn ngang nếu nhiều tab --- */
  .shop-tabs-inner {
    padding: 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .shop-tabs-inner::-webkit-scrollbar { display: none; }
  .tab-link { padding: 12px 14px; font-size: 12px; white-space: nowrap; }

  /* --- Page layout --- */
  .shop-page { padding: 12px; }
  .shop-layout { grid-template-columns: 1fr; gap: 10px; }
  .shop-sidebar { position: static; padding: 8px; }
  .sidebar-toggle { display: flex; }
  .sidebar-list { display: none; margin-top: 8px; }
  .sidebar-list.open { display: block; }

  /* --- Product grid: 2 cột --- */
  .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* --- Product detail: 1 cột, phóng to cho mobile --- */
  .detail-wrap { padding: 12px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-name { font-size: 18px !important; line-height: 1.4; }
  .detail-price { font-size: 26px !important; }
  .detail-price-row { gap: 8px; }
  .var-chip { padding: 10px 16px !important; font-size: 14px !important; min-height: 42px; }
  .qty-btn { width: 40px !important; height: 40px !important; font-size: 20px !important; }
  .qty-val { font-size: 18px !important; min-width: 40px; }

  /* --- Nút mua: sticky dưới cùng, full-width --- */
  .detail-btns {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: sticky; bottom: 56px; /* trên cart bar */
    background: #fff;
    padding: 12px;
    margin: 0 -12px; /* tràn ra bằng padding detail-wrap */
    border-top: 1px solid var(--border);
    z-index: 50;
  }
  .btn-cart-big, .btn-buy-big {
    width: 100%;
    padding: 14px 16px !important;
    font-size: 15px !important;
    font-weight: 600;
    border-radius: 12px !important;
    text-align: center;
    min-height: 50px;
    display: flex; align-items: center; justify-content: center;
  }

  /* --- Thumbnail row: cuộn ngang, không tràn trang --- */
  .detail-thumb-row {
    gap: 8px;
    padding-bottom: 6px;
  }
  .detail-thumb {
    width: 52px; height: 52px;
    flex-shrink: 0;
  }

  /* --- Checkout --- */
  .checkout-wrap { margin: 12px; }

  /* --- Floating widgets nhỏ hơn --- */
  .floating-widgets { right: 12px; bottom: 80px; }
  .fw-btn { width: 44px; height: 44px; }
}