/*
 * RHEA SKINLAB website
 * Recreated from scratch for Laravel Blade + Bootstrap 5
 */
:root {
  --primary: #cf2e70;
  --primary-hover: #ae2158;
  --primary-soft: #fff0f6;
  --secondary: #7867e3;
  --secondary-soft: #f0edff;
  --secondary-hover: #6655cf;

  --ink: #282631;
  --muted: #77727e;
  --line: #ece9ef;
  --surface: #ffffff;
  --canvas: #faf9fb;
  --tone-caution: #ffcf34;
  --tone-critical: #e51c38;
  --tone-positive: #259a72;
  --shadow: 0 14px 38px rgba(62, 39, 72, .09);
  --shadow-sm: 0 8px 24px rgba(62, 39, 72, .07);
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Be Vietnam Pro", "Segoe UI", sans-serif;

  --primary-color: var(--primary);
  --primary-hover-color: var(--primary-hover);
  --secondary-color: var(--secondary);
  --secondary-hover-color: var(--secondary-hover);

  --bs-primary: var(--primary);
  --bs-primary-rgb: 207, 46, 112;
  --bs-secondary: var(--secondary);
  --bs-secondary-rgb: 120, 103, 227;
}

html { scroll-behavior: smooth; font-size: 15px; }
body {
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; }
::selection { color: #fff; background: var(--primary); }

.container { --bs-gutter-x: 1.5rem; }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-positive { color: var(--tone-positive) !important; }
.text-caution { color: var(--tone-caution) !important; }
.text-critical { color: var(--tone-critical) !important; }
.bg-positive { color: #fff !important; background-color: var(--tone-positive) !important; }
.bg-caution { color: #3a3024 !important; background-color: var(--tone-caution) !important; }
.bg-critical { color: #fff !important; background-color: var(--tone-critical) !important; }
.bg-soft { background: var(--canvas); }
.section-space { padding-block: 58px; }
.section-space-sm { padding-block: 38px; }
.object-fit-cover { object-fit: cover; }
.fw-black { font-weight: 800; }
.letter-spacing { letter-spacing: .1em; }

.btn {
  --bs-btn-font-weight: 700;
  --bs-btn-border-radius: 999px;
  --bs-btn-padding-x: 1.35rem;
  --bs-btn-padding-y: .7rem;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-hover);
  --bs-btn-hover-border-color: var(--primary-hover);
  --bs-btn-active-bg: var(--primary-hover);
  --bs-btn-active-border-color: var(--primary-hover);
  --bs-btn-disabled-bg: #d78aa9;
  --bs-btn-disabled-border-color: #d78aa9;
  box-shadow: 0 9px 22px rgba(207, 46, 112, .18);
}
.btn-outline-critical {
  --bs-btn-color: var(--tone-critical);
  --bs-btn-border-color: var(--tone-critical);
  --bs-btn-hover-bg: var(--tone-critical);
  --bs-btn-hover-border-color: var(--tone-critical);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #b81a31;
  --bs-btn-active-border-color: #b81a31;
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-color: #f4a4b0;
  --bs-btn-disabled-border-color: #f4a4b0;
}
.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-active-bg: var(--primary-hover);
  --bs-btn-active-border-color: var(--primary-hover);
}
.alert-positive {
  --bs-alert-color: #0d4e34;
  --bs-alert-bg: #e7f6ee;
  --bs-alert-border-color: #b9e4cf;
}
.alert-critical {
  --bs-alert-color: #6f1123;
  --bs-alert-bg: #fde8ec;
  --bs-alert-border-color: #f4bcc7;
}
.btn-secondary {
  --bs-btn-bg: var(--secondary);
  --bs-btn-border-color: var(--secondary);
  --bs-btn-hover-bg: #6655cf;
  --bs-btn-hover-border-color: #6655cf;
}
.btn-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
}
.form-control, .form-select {
  border-color: var(--line);
  border-radius: 12px;
  min-height: 46px;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(207, 46, 112, .55);
  box-shadow: 0 0 0 .25rem rgba(207, 46, 112, .1);
}

/* Header */
.site-topbar {
  min-height: 34px;
  color: #fff;
  background: linear-gradient(90deg, #8f83eb 0%, #c37bd9 52%, #ed7daf 100%);
  font-size: 12.5px;
}
.site-topbar a { color: #fff; opacity: .94; }
.site-topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar-separator { opacity: .55; margin-inline: 10px; }

.site-header-main {
  background: #fff;
  border-bottom: 1px solid rgba(234, 230, 238, .75);
  padding-block: 14px;
}
.site-logo { display: inline-block; width: 225px; max-width: 100%; }
.site-logo img { width: 100%; height: auto; display: block; }
.header-search { position: relative; }
.header-search .form-control {
  height: 48px;
  padding: 0 58px 0 19px;
  border: 1px solid var(--line);
  background: #fbfafc;
  border-radius: 999px;
  font-size: 14px;
}
.header-search .btn {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: none;
}
.header-action {
  min-width: 69px;
  color: var(--ink);
  text-align: center;
  position: relative;
}
.header-action-icon {
  width: 39px;
  height: 39px;
  margin: 0 auto 2px;
  display: grid;
  place-items: center;
  border: 1px solid #ebe8ee;
  border-radius: 50%;
  font-size: 19px;
  transition: .2s ease;
}
.header-action:hover .header-action-icon {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.header-action-label { display: block; font-size: 11px; white-space: nowrap; }
.header-action .badge-count {
  position: absolute;
  top: -4px;
  right: 9px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1;
}
.hotline-box { min-width: 145px; }
.hotline-box .hotline-icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
}
.hotline-box small { color: var(--muted); font-size: 11px; }
.hotline-box strong { color: var(--primary); font-size: 14px; }

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(36, 26, 43, .025);
}
.site-navbar.is-sticky {
  animation: site-slide-down .25s ease;
  box-shadow: 0 8px 28px rgba(49, 31, 58, .08);
}
@keyframes site-slide-down { from { transform: translateY(-12px); opacity: .75; } to { transform: translateY(0); opacity: 1; } }
.site-navbar .navbar { --bs-navbar-padding-y: 0; }
.site-navbar .nav-link {
  color: var(--ink);
  padding: 16px 19px !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after { transform: scaleX(1); }
.site-navbar .nav-link.active { color: var(--primary); }
.navbar-category-trigger {
  min-width: 205px;
  color: #fff !important;
  background: var(--primary);
  border-radius: 0;
}
.navbar-category-trigger::after { display: none; }

.mega-menu {
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  width: min(1140px, calc(100vw - 48px));
  padding: 24px;
  border: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow);
}
.mega-title { font-size: 14px; font-weight: 800; margin-bottom: 10px; }
.mega-link {
  color: var(--muted);
  display: block;
  padding: 4px 0;
  font-size: 13.5px;
}
.mega-link:hover { color: var(--primary); padding-left: 3px; }
.category-mega-menu { padding: 0; overflow: hidden; }
.mega-category-layout {
  display: grid;
  grid-template-columns: minmax(240px, 28%) 1fr;
  min-height: 360px;
}
.mega-category-tabs {
  padding: 14px 0;
  background: #f8f6f9;
  border-right: 1px solid var(--line);
}
.mega-category-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 10px 18px;
  color: var(--ink);
  border-left: 3px solid transparent;
  font-size: 13.5px;
  font-weight: 750;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}
.mega-category-tab:hover,
.mega-category-tab:focus,
.mega-category-tab.is-active {
  color: var(--primary);
  background: #fff;
  border-left-color: var(--primary);
}
.mega-category-tab > .bi { flex: 0 0 auto; font-size: 12px; }
.mega-category-panels { padding: 28px 30px; background: #fff; }
.mega-category-panel { display: none; }
.mega-category-panel.is-active { display: block; animation: mega-panel-in .18s ease; }
@keyframes mega-panel-in { from { opacity: 0; transform: translateX(5px); } to { opacity: 1; transform: translateX(0); } }
.mega-panel-title { color: var(--ink); font-size: 19px; font-weight: 850; }
.mega-panel-title:hover,
.mega-panel-all:hover { color: var(--primary); }
.mega-panel-all { color: var(--muted); font-size: 12.5px; font-weight: 700; }
.mega-child-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 28px; }
.mega-child-group { min-width: 0; }
.mega-child-title { display: block; margin-bottom: 7px; color: var(--ink); font-size: 14px; font-weight: 800; }
.mega-child-title:hover { color: var(--primary); }
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
}

.mobile-header { background: #fff; border-bottom: 1px solid var(--line); padding-block: 9px; }
.mobile-header .site-logo { width: 155px; }
.mobile-trigger {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 19px;
  position: relative;
}
.mobile-trigger .badge-count {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 9px;
  font-size: 9px;
}

/* Breadcrumb */
.breadcrumb-wrap { background: #f8f7f9; border-bottom: 1px solid var(--line); }
.breadcrumb { margin: 0; padding-block: 12px; font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: #aaa4af; content: "›"; }
.breadcrumb-item.active { color: var(--muted); }

/* Hero */
.home-hero { background: #fff; }
.home-hero-swiper { width: 100%; overflow: hidden; background: #f4f1f6; }
.home-hero-swiper .swiper-slide,
.home-hero-fallback { position: relative; height: clamp(460px, 39vw, 720px); }
.home-hero-fallback { overflow: hidden; background: linear-gradient(135deg, #e8dce8, #756079); }
.home-hero-image { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.home-hero-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(270deg, rgba(23, 17, 27, .7), rgba(23, 17, 27, .24) 58%, transparent 84%); }
.home-hero-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(7vw, calc((100vw - 1140px) / 2));
  bottom: auto;
  left: auto;
  width: min(620px, 48vw);
  padding: 0;
  text-align: left;
  transform: translateY(-50%);
}
.home-hero-caption h1,
.home-hero-caption h2 { margin-bottom: 14px; color: #fff; font-size: clamp(30px, 3.4vw, 52px); font-weight: 800; line-height: 1.12; text-shadow: 0 2px 20px rgba(0, 0, 0, .18); }
.home-hero-caption p { margin-bottom: 24px; color: rgba(255, 255, 255, .9); font-size: clamp(14px, 1.25vw, 18px); }
.home-hero-prev,
.home-hero-next {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(23, 17, 27, .32);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  font-size: 19px;
  transform: translateY(-50%);
  transition: background-color .2s ease, transform .2s ease;
}
.home-hero-prev { left: 24px; }
.home-hero-next { right: 24px; }
.home-hero-prev:hover,
.home-hero-next:hover { background: var(--primary); transform: translateY(-50%) scale(1.04); }
.home-hero-swiper .swiper-pagination { z-index: 4; bottom: 18px; }
.home-hero-swiper .swiper-pagination-bullet { width: 28px; height: 4px; margin: 0 4px; background: rgba(255, 255, 255, .72); border-radius: 999px; opacity: 1; }
.home-hero-swiper .swiper-pagination-bullet-active { background: var(--primary); }
.hero-section { padding-top: 22px; }
.hero-main,
.hero-side-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: #f7f4fb;
}
.hero-main img,
.hero-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.hero-main:hover img,
.hero-side-card:hover img { transform: scale(1.018); }
.hero-main { aspect-ratio: 2.5 / 1; }
.hero-side-card { aspect-ratio: 2.57 / 1; }
.hero-seo-title {
  max-width: 980px;
  margin: 17px auto 0;
  color: #78727f;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

/* Heading */
.section-heading { margin-bottom: 25px; }
.section-heading-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.15vw, 30px);
  line-height: 1.2;
  font-weight: 800;
}
.section-link { color: var(--primary); font-size: 14px; font-weight: 800; }
.section-link i { transition: transform .2s ease; }
.section-link:hover i { transform: translateX(3px); }

/* Categories */
.home-categories-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(135deg, #fff 12%, #fdf6fa 55%, #f5edf9 100%);
  border: 1px solid rgba(207, 46, 112, .12);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(71, 42, 79, .11);
}
.home-categories-panel::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(207, 46, 112, .12), transparent 68%);
  pointer-events: none;
}
.home-categories-panel .section-heading,
.home-categories-panel .category-scroller { position: relative; z-index: 1; }
.category-scroller {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}
.category-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.category-image {
  position: relative;
  width: 100%;
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(224, 218, 228, .7);
  border-radius: 50%;
  background: #f6f3f8;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.category-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.category-title {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
}
.category-card:hover .category-image {
  transform: translateY(-5px);
  border-color: rgba(207, 46, 112, .32);
  box-shadow: 0 12px 24px rgba(74, 43, 84, .1);
}
.category-card:hover .category-title { color: var(--primary); }

/* Product cards */
.product-card {
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(207, 46, 112, .23);
  box-shadow: var(--shadow-sm);
}
.product-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #fbfafc;
}
.product-card-media > a { display: block; width: 100%; height: 100%; }
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.045); }
.product-badge-stack {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: calc(100% - 55px);
}
.product-badge {
  padding: 4px 7px;
  color: #fff;
  background: #2e4f80;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.product-badge.sale { background: var(--tone-critical); }
.product-badge.new { background: var(--tone-positive); }
.wishlist-btn {
  position: absolute;
  z-index: 3;
  right: 9px;
  top: 9px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .93);
  border: 1px solid #eeeaf0;
  border-radius: 50%;
  font-size: 18px;
  transition: .2s ease;
}
.wishlist-btn:hover,
.wishlist-btn.is-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.product-card-actions {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 10px;
  display: flex;
  gap: 7px;
  transform: translate(-50%, 12px);
  opacity: 0;
  transition: .25s ease;
}
.product-card:hover .product-card-actions { transform: translate(-50%, 0); opacity: 1; }
.product-card-actions .btn {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(39, 27, 45, .16);
}
.product-card-actions .btn:hover { color: #fff; background: var(--primary); }
.product-card-body { padding: 12px 13px 14px; }
.product-brand { min-height: 15px; color: #9a939f; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-title {
  height: 42px;
  margin: 5px 0 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #3b3740;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
}
.product-title:hover { color: var(--primary); }
.product-price { color: var(--primary); font-size: 15.5px; font-weight: 800; white-space: nowrap; }
.product-old-price { margin-left: 5px; color: #aaa4ad; font-size: 11.5px; text-decoration: line-through; white-space: nowrap; }
.product-discount {
  margin-left: auto;
  padding: 2px 5px;
  color: #fff;
  background: var(--tone-critical);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
}
.product-sold { margin-top: 9px; }
.product-sold-bar {
  height: 15px;
  overflow: hidden;
  position: relative;
  background: #f6c1dc;
  border-radius: 999px;
}
.product-sold-progress {
  width: var(--sold, 65%);
  height: 100%;
  background: linear-gradient(90deg, #f05f97, var(--primary));
  border-radius: inherit;
}
.product-sold-text {
  position: absolute;
  inset: 0;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 15px;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0,0,0,.12);
}
.product-gift {
  margin-top: 8px;
  padding: 5px 7px;
  overflow: hidden;
  color: #9b6829;
  background: #fffaf1;
  border: 1px dashed #e2b268;
  border-radius: 4px;
  font-size: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product-stock { margin-top: 8px; color: var(--tone-positive); font-size: 11px; font-weight: 700; }
.product-stock.out { color: #999; }

/* Flash sale */
.flash-sale-wrap {
  padding: 22px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #d72f72, #c02763);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(179, 30, 88, .2);
}
.flash-sale-wrap::before,
.flash-sale-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: .08;
}
.flash-sale-wrap::before { width: 260px; height: 260px; right: -100px; top: -130px; }
.flash-sale-wrap::after { width: 160px; height: 160px; left: -65px; bottom: -90px; }
.flash-sale-head { position: relative; z-index: 1; color: #fff; }
.flash-sale-title { margin: 0; color: #ffe255; font-size: 25px; font-weight: 900; }
.countdown { display: flex; align-items: center; gap: 5px; }
.countdown-unit {
  min-width: 45px;
  padding: 8px 6px;
  color: #fff;
  background: #1e1c25;
  border-radius: 8px;
  line-height: 1;
  text-align: center;
}
.countdown-unit strong { display: block; font-size: 17px; }
.countdown-unit span { display: block; margin-top: 3px; color: #d8d4db; font-size: 8px; text-transform: uppercase; }
.countdown-separator { color: #fff; font-weight: 900; }
.flash-sale-swiper { z-index: 1; overflow: hidden; padding: 2px; }
.flash-sale-swiper .swiper-slide { height: auto; }
.flash-sale-swiper .product-card { border: 0; }
.flash-sale-prev,
.flash-sale-next {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(255, 255, 255, .96);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(45, 24, 39, .22);
  transform: translateY(-50%);
}
.flash-sale-prev { left: 8px; }
.flash-sale-next { right: 8px; }
.flash-sale-prev.swiper-button-disabled,
.flash-sale-next.swiper-button-disabled { opacity: .35; cursor: default; }

/* Voucher */
.voucher-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}
.voucher-side {
  min-width: 105px;
  padding: 19px 13px;
  color: #3a3024;
  background: var(--tone-caution);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .08em;
}
.voucher-content { flex: 1; padding: 14px 18px; }
.voucher-code { color: var(--primary); font-size: 17px; font-weight: 900; }
.voucher-description { color: var(--muted); font-size: 13px; }
.voucher-cut {
  width: 1px;
  position: relative;
  border-left: 1px dashed #cfc8d2;
}
.voucher-cut::before,
.voucher-cut::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: -8px;
  background: var(--canvas);
  border-radius: 50%;
}
.voucher-cut::before { top: -8px; }
.voucher-cut::after { bottom: -8px; }

/* Product tabs */
.product-section-shell {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(55, 39, 65, .05);
}
.product-section-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff, #fff7fa);
}
.product-section-title { margin: 0; font-size: 22px; font-weight: 900; }
.product-tabs { gap: 8px; }
.product-tabs .nav-link {
  padding: 7px 16px;
  color: #5f5a65;
  background: #f7f5f8;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.product-tabs .nav-link:hover,
.product-tabs .nav-link.active {
  color: var(--primary);
  background: var(--primary-soft);
  border-color: rgba(207, 46, 112, .18);
}
.product-section-content { padding: 20px; }
.product-section-banner {
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  background: linear-gradient(150deg, #f1edff, #fce1ed);
}
.product-section-banner::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  top: -75px;
  border-radius: 50%;
  background: #fff;
  opacity: .4;
}
.product-section-banner-content { position: relative; z-index: 1; padding: 34px 26px; }
.product-section-banner .eyebrow { color: var(--primary); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.product-section-banner h3 { margin: 12px 0; font-size: 27px; font-weight: 900; line-height: 1.2; }
.product-section-banner p { color: #676170; }
.product-section-banner .mini-products {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.product-section-banner .mini-products img {
  width: 145px;
  filter: drop-shadow(0 18px 14px rgba(77, 47, 89, .15));
}
.product-section-banner .mini-products img + img { margin-left: -42px; }

/* Brands */
.brand-marquee {
  position: relative;
  overflow: hidden;
  padding-block: 6px 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.brand-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: brand-marquee-scroll 65s linear infinite;
}
.brand-marquee__group {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  padding-right: 12px;
}
.brand-marquee:hover .brand-marquee__track,
.brand-marquee:focus-within .brand-marquee__track {
  animation-play-state: paused;
}
.brand-card {
  flex: 0 0 clamp(150px, 14vw, 210px);
  min-height: 82px;
  padding: 16px;
  display: grid;
  place-items: center;
  color: #4c4853;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  transition: .2s ease;
}
.brand-card:hover {
  color: var(--primary);
  border-color: rgba(207, 46, 112, .28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
@keyframes brand-marquee-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .brand-marquee__track { animation: none; }
  .brand-marquee__group[aria-hidden="true"] { display: none; }
}

/* News */
.news-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: .25s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.news-card-image { aspect-ratio: 16 / 9; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card-image img { transform: scale(1.04); }
.news-card-body { padding: 17px; }
.news-date { color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-title {
  min-height: 48px;
  margin: 7px 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}
.news-excerpt {
  min-height: 63px;
  margin-bottom: 13px;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 13px;
}
.news-readmore { color: var(--primary); font-size: 13px; font-weight: 800; }

/* News detail */
.news-detail-section { background: linear-gradient(180deg, #faf8fb, #fff 42%); }
.news-detail-main {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(55, 37, 64, .08);
}
.news-detail-header { padding: clamp(28px, 4vw, 52px) clamp(24px, 5vw, 64px) clamp(24px, 3vw, 38px); }
.news-detail-meta {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.news-detail-category {
  padding: 6px 11px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  font-weight: 800;
}
.news-detail-header h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.news-detail-excerpt {
  max-width: 860px;
  margin: 18px 0 0;
  color: #716b76;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.65;
}
.news-detail-cover { margin: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #f4f1f5; }
.news-detail-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }
.news-article-content {
  padding: clamp(30px, 5vw, 64px);
  color: #514c55;
  font-size: 15.5px;
  line-height: 1.85;
}
.news-article-content > :first-child { margin-top: 0; }
.news-article-content > :last-child { margin-bottom: 0; }
.news-article-content h2,
.news-article-content h3,
.news-article-content h4 {
  margin: 1.7em 0 .65em;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
}
.news-article-content h2 { font-size: clamp(21px, 2.1vw, 27px); }
.news-article-content h3 { font-size: clamp(18px, 1.7vw, 22px); }
.news-article-content p,
.news-article-content ul,
.news-article-content ol { margin-bottom: 1.2em; }
.news-article-content img { max-width: 100%; height: auto; border-radius: 14px; }
.news-article-content blockquote {
  margin: 1.8em 0;
  padding: 18px 22px;
  color: #4c414e;
  background: #fbf3f7;
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  font-style: italic;
}
.news-detail-footer {
  padding: 20px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
.news-detail-footer a { color: var(--primary); font-size: 13px; font-weight: 800; }
.news-detail-sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 20px;
}
.news-sidebar-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(55, 37, 64, .07);
}
.news-sidebar-heading {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.news-sidebar-heading h2,
.news-sidebar-newsletter h2 { margin: 0; font-size: 19px; font-weight: 850; }
.news-sidebar-heading > a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
}
.news-sidebar-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 11px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.news-sidebar-item:last-child { padding-bottom: 0; border-bottom: 0; }
.news-sidebar-thumb { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 9px; background: #f4f1f5; }
.news-sidebar-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .25s ease; }
.news-sidebar-item:hover .news-sidebar-thumb img { transform: scale(1.05); }
.news-sidebar-date { margin-bottom: 4px; color: var(--primary); font-size: 9px; font-weight: 800; letter-spacing: .05em; }
.news-sidebar-item h3 {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}
.news-sidebar-item h3 a:hover { color: var(--primary); }
.news-sidebar-newsletter {
  overflow: hidden;
  position: relative;
  padding: 24px 20px;
  color: #fff;
  background: linear-gradient(145deg, #b92661, #7e214d);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(166, 34, 89, .2);
}
.news-sidebar-newsletter::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}
.news-sidebar-newsletter-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  font-size: 21px;
}
.news-sidebar-newsletter form { position: relative; z-index: 1; margin-top: 17px; }
.news-sidebar-newsletter .form-control { margin-bottom: 10px; border: 0; min-height: 44px; }
.news-sidebar-newsletter .btn { color: var(--primary); font-size: 12px; font-weight: 850; }
.news-newsletter-success { position: relative; z-index: 1; margin-top: 16px; font-size: 13px; }

/* USP */
.home-values-section {
  padding-block: 22px;
  background: linear-gradient(90deg, #fbf1f6, #f2efff);
  border-top: 1px solid #eee7ef;
  border-bottom: 1px solid #eee7ef;
}
.home-value-card {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px;
  text-align: left;
}
.home-value-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(145deg, #fff, var(--primary-soft));
  border: 1px solid #eee5f0;
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(63, 43, 72, .09);
  font-size: 22px;
}
.home-value-card h3 { margin-bottom: 4px; color: var(--ink); font-size: 14px; font-weight: 850; }
.home-value-card p { margin: 0; color: var(--muted); font-size: 11.5px; line-height: 1.55; }
.service-strip {
  background: linear-gradient(90deg, #fbf1f6, #f2efff);
  border-top: 1px solid #eee7ef;
  border-bottom: 1px solid #eee7ef;
}
.service-item { display: flex; align-items: center; gap: 12px; padding: 23px 10px; }
.service-icon {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(63, 43, 72, .07);
  font-size: 21px;
}
.service-title { font-size: 13px; font-weight: 800; }
.service-text { color: var(--muted); font-size: 11.5px; }

/* Footer */
.site-footer { color: #d8d4dd; background: #24212a; }
.site-footer-main { padding-block: 52px 40px; }
.footer-logo { width: 220px; padding: 7px; background: #fff; border-radius: 12px; }
.footer-heading {
  margin-bottom: 17px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-text { color: #bdb7c3; font-size: 13px; }
.footer-contact-item { display: flex; gap: 10px; margin-top: 10px; color: #c6c0cb; font-size: 13px; }
.footer-contact-item i { color: #ef77a7; margin-top: 2px; }
.footer-link { display: block; padding: 4px 0; color: #bdb7c3; font-size: 13px; }
.footer-link:hover { color: #fff; padding-left: 3px; }
.footer-sublink { padding-left: 12px; font-size: 12px; }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #34303b;
  border-radius: 50%;
}
.social-link:hover { color: #fff; background: var(--primary); }
.newsletter-form { position: relative; }
.newsletter-form .form-control {
  min-height: 47px;
  padding-right: 112px;
  color: #fff;
  background: #302c36;
  border-color: #45404c;
  border-radius: 999px;
}
.newsletter-form .form-control::placeholder { color: #9d96a4; }
.newsletter-form .btn { position: absolute; right: 4px; top: 4px; height: 39px; padding-inline: 17px; font-size: 12px; }
.payment-badge {
  min-width: 52px;
  height: 31px;
  padding: 0 9px;
  display: inline-grid;
  place-items: center;
  color: #44404a;
  background: #fff;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
}
.site-footer-bottom { padding-block: 16px; border-top: 1px solid #37323e; color: #918a98; font-size: 12px; }

/* Floating contact */
.floating-actions {
  position: fixed;
  z-index: 1035;
  right: 19px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.floating-action {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border: 3px solid rgba(255,255,255,.85);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(51, 34, 57, .22);
  font-size: 20px;
  position: relative;
}
.floating-action:hover { color: #fff; transform: translateY(-2px); }
.floating-action.phone { background: #24a269; animation: site-pulse 2s infinite; }
.floating-action.zalo { background: #1677ff; font-size: 12px; font-weight: 900; }
.floating-action.messenger { background: #7b61eb; }
.floating-action.back-to-top { opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.floating-action.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-tooltip {
  position: absolute;
  right: 58px;
  width: max-content;
  max-width: 220px;
  padding: 7px 10px;
  color: #fff;
  background: #27232d;
  border-radius: 7px;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition: .2s ease;
}
.floating-action:hover .floating-tooltip { opacity: 1; transform: translateX(0); }
@keyframes site-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(36, 162, 105, .28), 0 8px 20px rgba(51,34,57,.22); } 50% { box-shadow: 0 0 0 10px rgba(36, 162, 105, 0), 0 8px 20px rgba(51,34,57,.22); } }

/* Offcanvas and modal */
.offcanvas { --bs-offcanvas-width: min(390px, 92vw); }
.offcanvas-header { border-bottom: 1px solid var(--line); }
.offcanvas-title { font-weight: 800; }
.mobile-menu-list .nav-link { padding: 11px 0; color: var(--ink); border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-menu-heading { margin: 22px 0 4px; color: var(--primary); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.mobile-submenu { padding: 4px 0 10px 15px; }
.mobile-submenu a { display: block; padding: 5px 0; color: var(--muted); font-size: 13px; }
.search-modal .modal-content { border: 0; border-radius: 18px; }
.search-modal .modal-body { padding: 34px; }
.search-modal .form-control { min-height: 57px; padding-right: 58px; border-radius: 999px; font-size: 16px; }
.quick-view-modal .modal-content { overflow: hidden; border: 0; border-radius: 18px; }
.quick-view-image { min-height: 430px; background: #faf8fb; }
.quick-view-image img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.toast-container { z-index: 1090; }
.site-toast { border: 0; border-radius: 12px; box-shadow: var(--shadow); }

/* Catalog */
.page-hero {
  padding-block: 42px;
  background: linear-gradient(100deg, #f8eef3, #f0edff);
}
.page-hero h1 { margin: 0; font-size: clamp(27px, 3.2vw, 39px); font-weight: 900; }
.page-hero p { max-width: 640px; margin: 8px 0 0; color: var(--muted); }
.catalog-toolbar {
  padding: 12px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.filter-card {
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.filter-card-title {
  padding: 11px 15px;
  margin: 0;
  background: linear-gradient(90deg, #f0edff, #fdeaf3);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.filter-card-body { max-height: 250px; overflow: auto; padding: 12px 15px; }
.filter-card .form-check { margin-bottom: 8px; }
.filter-card .form-check-label { color: #5f5a64; font-size: 13px; }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.catalog-empty { padding: 70px 20px; text-align: center; }
.pagination { --bs-pagination-color: var(--ink); --bs-pagination-active-bg: var(--primary); --bs-pagination-active-border-color: var(--primary); --bs-pagination-hover-color: var(--primary); }
.page-link { border-color: var(--line); }

/* Product detail */
.product-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: #faf9fb;
  border: 1px solid var(--line);
  border-radius: 17px;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-title { margin: 0 0 8px; font-size: clamp(18px, 1.9vw, 24px); line-height: 1.25; font-weight: 800; }
.product-meta { color: var(--muted); font-size: 13px; }
.product-detail-price { margin-block: 17px; color: var(--primary); font-size: 30px; font-weight: 900; }
.product-detail-price del { margin-left: 10px; color: #a8a2ac; font-size: 16px; font-weight: 400; }
.deal-box {
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #e4dff8;
  border-radius: 12px;
}
.deal-box-head {
  padding: 10px 13px;
  color: #fff;
  background: linear-gradient(90deg, var(--secondary), #9a87f0);
  font-weight: 800;
}
.gift-box { overflow: hidden; margin-bottom: 17px; border: 1px solid #e43449; border-radius: 11px; }
.gift-box-head { padding: 10px 13px; color: #fff; background: #d80f20; font-weight: 800; }
.gift-box-body { padding: 12px 14px; }
.option-label { margin-bottom: 8px; font-weight: 800; }
.variant-btn { min-width: 58px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.variant-btn.active { color: var(--primary); background: var(--primary-soft); border-color: var(--primary); }
.quantity-control { width: 125px; display: flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.quantity-control button { width: 38px; border: 0; background: #f8f6f9; }
.quantity-control input { width: 49px; min-height: 42px; border: 0; text-align: center; outline: none; }
.policy-card { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; }
.policy-card-head { padding: 11px 14px; background: linear-gradient(90deg, #f0edff, #fdeaf3); font-weight: 800; }
.policy-row { display: flex; gap: 11px; padding: 11px 14px; color: #625d67; border-top: 1px dashed var(--line); font-size: 13px; }
.policy-row i { color: var(--secondary); font-size: 19px; }
.product-description { color: #55515a; line-height: 1.75; }
.product-description h2, .product-description h3 { color: var(--ink); font-weight: 800; }
.description-product-callout {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 680px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.description-product-callout img { width: 120px; border-radius: 10px; }

/* Cart */
.shipping-progress { height: 12px; background: #f0edf2; border-radius: 999px; overflow: hidden; }
.shipping-progress-bar { width: 62%; height: 100%; background: linear-gradient(90deg, var(--tone-caution), #ffad33); }
.rating-stars { color: #ffb72d; }
.cart-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
.cart-table th { color: #625d67; background: #f8f7f9; font-size: 12px; text-transform: uppercase; }
.cart-product-img { width: 88px; height: 88px; object-fit: cover; border: 1px solid var(--line); border-radius: 9px; }
.cart-summary { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.coupon-chip { padding: 7px 10px; color: var(--primary); background: #fff; border: 1px dashed var(--primary); border-radius: 7px; font-size: 12px; font-weight: 800; }

/* Content / contact */
.content-card { padding: clamp(20px, 4vw, 40px); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.contact-info-card { height: 100%; padding: 22px; background: linear-gradient(145deg, #2d2933, #1f1c24); border-radius: 18px; color: #fff; }
.contact-info-row { display: flex; gap: 13px; margin-top: 18px; color: #d7d1db; }
.contact-info-row i { color: #ef78aa; font-size: 20px; }
.map-placeholder { min-height: 360px; overflow: hidden; display: grid; place-items: center; background: linear-gradient(135deg, #e7e3ed, #f8edf2); border-radius: 18px; }

/* Responsive */
@media (max-width: 1199.98px) {
  .category-scroller { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .site-navbar .nav-link { padding-inline: 13px !important; font-size: 12.5px; }
  .navbar-category-trigger { min-width: 180px; }
}
@media (max-width: 991.98px) {
  .section-space { padding-block: 44px; }
  .home-hero-swiper .swiper-slide,
  .home-hero-fallback { height: clamp(360px, 62vw, 560px); }
  .home-hero-caption { right: 7vw; left: auto; width: min(620px, 72vw); }
  .home-hero-caption h1,
  .home-hero-caption h2 { font-size: clamp(27px, 5vw, 40px); }
  .hero-section { padding-top: 13px; }
  .hero-main { aspect-ratio: 2.15 / 1; }
  .category-scroller {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 2px 12px;
  }
  .category-scroller::-webkit-scrollbar { display: none; }
  .category-card { flex: 0 0 120px; scroll-snap-align: start; }
  .flash-sale-wrap { padding: 17px; border-radius: 16px; }
  .product-section-header { align-items: flex-start !important; }
  .product-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; scrollbar-width: none; }
  .product-tabs .nav-link { white-space: nowrap; }
  .floating-actions { right: 12px; bottom: 14px; }
  .floating-action { width: 44px; height: 44px; }
  .news-detail-sidebar { position: static; }
}
@media (max-width: 767.98px) {
  html { font-size: 14px; }
  body { font-size: 13.5px; }
  .container { --bs-gutter-x: 1.15rem; }
  .home-hero-swiper .swiper-slide,
  .home-hero-fallback { height: min(78vw, 480px); min-height: 330px; }
  .home-hero-shade { background: linear-gradient(270deg, rgba(23, 17, 27, .72), rgba(23, 17, 27, .2)); }
  .home-hero-caption { right: 24px; left: auto; width: calc(100% - 48px); }
  .home-hero-caption h1,
  .home-hero-caption h2 { margin-bottom: 9px; font-size: clamp(24px, 7vw, 33px); }
  .home-hero-caption p { margin-bottom: 16px; font-size: 13.5px; }
  .home-hero-caption .btn { padding: 9px 14px; font-size: 12px; }
  .home-hero-prev,
  .home-hero-next { width: 38px; height: 38px; font-size: 15px; }
  .home-hero-prev { left: 10px; }
  .home-hero-next { right: 10px; }
  .home-values-section { padding-block: 16px; }
  .home-value-card { padding: 10px 6px; }
  .section-space { padding-block: 36px; }
  .section-space-sm { padding-block: 28px; }
  .section-heading { margin-bottom: 18px; }
  .section-heading-title { font-size: 21px; }
  .home-categories-panel { padding: 20px 16px; border-radius: 18px; }
  .news-detail-main { border-radius: 16px; }
  .news-detail-header { padding: 24px 20px; }
  .news-detail-header h1 { font-size: 25px; }
  .news-detail-excerpt { font-size: 13.5px; }
  .news-article-content { padding: 26px 20px; font-size: 14px; line-height: 1.8; }
  .news-detail-footer { padding: 18px 20px; }
  .hero-main { aspect-ratio: auto; border-radius: 13px; }
  .hero-main img { height: auto; object-fit: contain; object-position: center; }
  .hero-side-card { border-radius: 13px; }
  .hero-seo-title { font-size: 11px; }
  .category-card { flex-basis: 102px; }
  .category-title { font-size: 12px; }
  .flash-sale-head { align-items: flex-start !important; }
  .flash-sale-title { font-size: 21px; }
  .countdown-unit { min-width: 38px; padding: 7px 5px; }
  .countdown-unit strong { font-size: 14px; }
  .product-card-body { padding: 10px; }
  .product-title { height: 39px; font-size: 12.5px; line-height: 1.5; }
  .product-price { font-size: 14px; }
  .product-old-price { display: block; margin: 2px 0 0; }
  .product-card-actions { display: none; }
  .voucher-side { min-width: 73px; font-size: 14px; }
  .voucher-content { padding: 12px; }
  .voucher-code { font-size: 14px; }
  .voucher-description { font-size: 11px; }
  .product-section-shell { border-radius: 15px; }
  .product-section-header { padding: 15px; }
  .product-section-title { font-size: 20px; }
  .product-section-content { padding: 12px; }
  .brand-marquee__group { gap: 9px; padding-right: 9px; }
  .brand-card { flex-basis: 145px; min-height: 66px; font-size: 16px; }
  .service-item { padding-block: 14px; }
  .site-footer-main { padding-block: 38px 28px; }
  .quick-view-image, .quick-view-image img { min-height: 280px; }
  .search-modal .modal-body { padding: 22px; }
  .product-detail-title { font-size: 18px; }
  .cart-table-wrap { border: 0; overflow: visible; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { margin-bottom: 13px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; }
  .cart-table td { padding: 5px 0; border: 0; }
  .floating-tooltip { display: none; }
}
@media (max-width: 575.98px) {
  .home-hero-swiper .swiper-slide { height: 96vw; max-height: 460px; min-height: 340px; }
  .home-hero-prev,
  .home-hero-next { display: none; }
  .mobile-header .site-logo { width: 132px; }
  .mobile-trigger { width: 37px; height: 37px; }
  .hero-main { aspect-ratio: auto; }
  .hero-main img { height: auto; object-fit: contain; object-position: center; }
  .hero-side-card { aspect-ratio: 2.25 / 1; }
  .flash-sale-wrap { margin-inline: -4px; padding: 14px; }
  .voucher-card { align-items: stretch; }
  .voucher-side { writing-mode: vertical-rl; text-orientation: mixed; letter-spacing: .06em; }
  .product-tabs .nav-link { padding: 6px 12px; font-size: 12px; }
  .floating-actions .floating-action.zalo,
  .floating-actions .floating-action.messenger { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}




