/* ============================================================
   SHOP BAO SU 69 — Dark Luxury Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --bg-primary:    #0a0a10;
  --bg-secondary:  #10101a;
  --bg-card:       #14141f;
  --bg-card2:      #1a1a2e;
  --red:           #e63946;
  --pink:          #ff4d7e;
  --gold:          #d4a843;
  --gold-light:    #f0c965;
  --purple:        #7c3aed;
  --text-primary:  #f5f5f5;
  --text-secondary:#b0b0c0;
  --text-muted:    #6b6b80;
  --border:        rgba(255,255,255,0.08);
  --glow-red:      0 0 20px rgba(230,57,70,0.4);
  --glow-pink:     0 0 20px rgba(255,77,126,0.4);
  --glow-gold:     0 0 20px rgba(212,168,67,0.4);
  --radius:        16px;
  --radius-sm:     8px;
  --transition:    0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.logo-badge {
  position: relative;
  width: 82px;
  height: 70px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.logo-img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,77,126,0.6);
  box-shadow:
    0 0 14px rgba(255,77,126,0.55),
    0 0 34px rgba(230,57,70,0.34),
    inset 0 0 18px rgba(255,255,255,0.12);
  animation: logo-float 4.2s ease-in-out infinite, logo-glow 2.8s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.logo-aura,
.logo-badge::before,
.logo-badge::after,
.logo-spark {
  content: '';
  position: absolute;
  pointer-events: none;
}
.logo-aura {
  inset: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,77,126,0.28), transparent 62%),
    conic-gradient(from 0deg, transparent, rgba(255,77,126,0.85), rgba(240,201,101,0.72), transparent 58%);
  filter: blur(8px);
  opacity: 0.86;
  animation: logo-orbit 6s linear infinite;
  z-index: 0;
}
.logo-badge::before {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255,77,126,0.42);
  box-shadow: 0 0 24px rgba(255,77,126,0.42), inset 0 0 16px rgba(240,201,101,0.18);
  animation: logo-pulse-ring 2.9s ease-in-out infinite;
  z-index: 1;
}
.logo-badge::after {
  width: 16px;
  height: 90px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.95), transparent);
  filter: blur(3px);
  opacity: 0.62;
  transform: rotate(35deg) translateX(-58px);
  animation: logo-shine 3.8s ease-in-out infinite;
  z-index: 3;
}
.logo-spark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff, 0 0 16px rgba(255,77,126,0.95);
  z-index: 4;
  opacity: 0;
}
.logo-spark::before,
.logo-spark::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 15px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: translate(-50%,-50%);
}
.logo-spark::after { transform: translate(-50%,-50%) rotate(90deg); }
.logo-spark.s1 { top: 9px; right: 11px; animation: logo-twinkle 2.6s ease-in-out infinite; }
.logo-spark.s2 { bottom: 10px; left: 8px; transform: scale(0.74); animation: logo-twinkle 3.1s ease-in-out 0.7s infinite; }
.logo-spark.s3 { top: 31px; left: 4px; transform: scale(0.56); animation: logo-twinkle 2.8s ease-in-out 1.2s infinite; }

@keyframes logo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.025); }
}
@keyframes logo-glow {
  0%, 100% { filter: saturate(1.05) brightness(1); }
  50% { filter: saturate(1.28) brightness(1.14); }
}
@keyframes logo-orbit {
  to { transform: rotate(360deg); }
}
@keyframes logo-pulse-ring {
  0%, 100% { transform: scale(0.94); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes logo-shine {
  0%, 18% { opacity: 0; transform: rotate(35deg) translateX(-60px); }
  38% { opacity: 0.7; }
  58%, 100% { opacity: 0; transform: rotate(35deg) translateX(58px); }
}
@keyframes logo-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.35) rotate(0deg); }
  45% { opacity: 1; transform: scale(1) rotate(45deg); }
  70% { opacity: 0.35; transform: scale(0.72) rotate(80deg); }
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}
.nav a,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav > a,
.nav-link { font-size: 0.9rem; }
.nav a::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--pink));
  transition: width var(--transition);
  border-radius: 2px;
}
.nav a:hover, .nav a.active, .nav-item.active .nav-link { color: var(--text-primary); }
.nav a:hover::after, .nav a.active::after, .nav-item.active .nav-link::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-call-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--glow-pink);
}
.btn-call-header:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,77,126,0.5); }

.category-bar {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 999;
  background:
    linear-gradient(90deg, rgba(230,57,70,0.08), rgba(255,77,126,0.05), rgba(212,168,67,0.08)),
    rgba(10,10,16,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.category-bar-inner {
  max-width: 1320px;
  height: 62px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: visible;
}
.cat-nav-item { position: relative; }
.cat-nav-link {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.cat-nav-link::after {
  content: '⌄';
  color: var(--gold);
  font-size: 0.76rem;
}
.cat-nav-link small {
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(212,168,67,0.16);
  color: var(--gold-light);
  font-size: 0.68rem;
  text-align: center;
}
.cat-nav-item:hover .cat-nav-link,
.cat-nav-item.active .cat-nav-link {
  color: #fff;
  border-color: rgba(255,77,126,0.42);
  background: rgba(255,77,126,0.13);
  transform: translateY(-1px);
}
.cat-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 285px;
  padding: 12px;
  background: rgba(13,13,22,0.99);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.cat-nav-item:hover .cat-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.cat-nav-item:nth-last-child(-n+2) .cat-nav-dropdown {
  left: auto;
  right: 0;
}
.cat-nav-dropdown a {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
}
.cat-nav-dropdown a:hover {
  color: #fff;
  background: rgba(255,77,126,0.12);
}
.cat-nav-dropdown small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(10,10,16,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu .mobile-group-link {
  color: var(--gold);
  border-bottom-color: rgba(212,168,67,0.25);
  padding-top: 14px;
}
.mobile-menu .mobile-sub-link {
  padding-left: 18px;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

/* ===== HERO BANNER ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 136px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(230,57,70,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(255,77,126,0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 55% 85%, rgba(124,58,237,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 60%, rgba(212,168,67,0.06) 0%, transparent 40%),
    var(--bg-primary);
}

/* Dot grid overlay */
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 65% 45%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 85% at 65% 45%, black 30%, transparent 80%);
  pointer-events: none;
}

/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,0.12);
  pointer-events: none;
}
.hero-ring-1 {
  width: 700px; height: 700px;
  top: 50%; right: -180px;
  transform: translateY(-50%);
  box-shadow: 0 0 80px rgba(230,57,70,0.04), inset 0 0 80px rgba(230,57,70,0.04);
  animation: ring-spin 35s linear infinite;
}
.hero-ring-2 {
  width: 460px; height: 460px;
  top: 50%; right: 20px;
  transform: translateY(-50%);
  border-color: rgba(212,168,67,0.08);
  animation: ring-spin 25s linear infinite reverse;
}
@keyframes ring-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--pink);
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}
@keyframes float-up {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.28);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e63946;
  box-shadow: 0 0 6px #e63946;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

/* Title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s 0.1s ease both;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ht-small {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
}
.gradient-text {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  background: linear-gradient(90deg, var(--red) 0%, var(--pink) 25%, var(--gold) 50%, var(--pink) 75%, var(--red) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradient-pan 5s linear infinite;
  display: block;
}
.ht-tagline {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}
#htCycle {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Slogan */
.hero-slogan {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.85;
  animation: fadeInDown 0.8s 0.2s ease both;
}
.hero-slogan strong { color: var(--gold); }

/* CTAs */
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInDown 0.8s 0.3s ease both;
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  border: none; border-radius: 50px;
  color: #fff; font-size: 0.9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  transition: all var(--transition);
  box-shadow: var(--glow-red);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(230,57,70,0.5); }
.hero-btn-main { font-size: 0.95rem; padding: 16px 32px; }
.btn-arrow-icon { font-size: 1.1rem; transition: transform 0.3s ease; }
.btn-primary:hover .btn-arrow-icon { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: var(--text-primary); font-size: 0.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--pink); color: var(--pink); transform: translateY(-3px); }

/* Trust pills */
.hero-trust {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s 0.35s ease both;
}
.trust-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* Stats */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  animation: fadeInDown 0.8s 0.45s ease both;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat .num { font-size: 1.9rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; margin-bottom: 4px; }
.hero-stat .label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ─── Hero Visual: Floating cards ─── */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.9s 0.3s ease both;
}

.hf-wrap {
  position: relative;
}

.hf-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  transform: perspective(1100px) rotateY(-7deg) rotateX(3deg);
  transition: transform 0.7s ease;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}
.hero-visual:hover .hf-grid {
  transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}

/* Main large card */
.hfc {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hfc:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.hfc-main { height: 340px; display: flex; flex-direction: column; }
.hfc-img {
  flex: 1; position: relative; overflow: hidden;
  min-height: 0;
}
.hfc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hfc:hover .hfc-img img { transform: scale(1.06); }
.hfc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,16,0.85) 0%, transparent 55%);
}
.hfc-body {
  padding: 14px 16px;
  background: rgba(10,10,16,0.7);
  backdrop-filter: blur(8px);
}
.hfc-tag {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--pink); display: block; margin-bottom: 4px;
}
.hfc-name {
  font-size: 0.82rem; font-weight: 600;
  color: #fff; line-height: 1.3; margin-bottom: 8px;
}
.hfc-foot { display: flex; align-items: center; justify-content: space-between; }
.hfc-price { font-size: 0.78rem; font-weight: 700; color: var(--gold); }
.hfc-hot { font-size: 0.68rem; background: rgba(230,57,70,0.2); color: #ff7b85; padding: 2px 8px; border-radius: 50px; border: 1px solid rgba(230,57,70,0.3); }

/* Right column */
.hfc-col { display: flex; flex-direction: column; gap: 12px; }

.hfc-sm {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  height: 80px;
  flex-shrink: 0;
}
.hfc-sm img {
  width: 56px; height: 56px;
  object-fit: cover; border-radius: 10px;
  flex-shrink: 0;
}
.hfc-sm-info { flex: 1; min-width: 0; }
.hfc-sm-name {
  font-size: 0.72rem; font-weight: 600;
  color: #fff; line-height: 1.3; margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hfc-sm-price { font-size: 0.65rem; color: var(--gold); font-weight: 700; }

/* Rating card */
.hfc-rating {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(212,168,67,0.12), rgba(240,201,101,0.06));
  border: 1px solid rgba(212,168,67,0.2);
  text-align: center;
}
.hfc-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 6px; text-shadow: 0 0 10px rgba(212,168,67,0.6); }
.hfc-score { font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hfc-rtxt { font-size: 0.62rem; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0.5px; }

/* Floating decorative badges on hero visual */
.hf-badge {
  position: absolute;
  font-size: 0.68rem; font-weight: 700;
  color: #fff;
  background: rgba(14,14,24,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 6px 14px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  animation: badge-float 4s ease-in-out infinite;
  z-index: 5;
}
.hf-badge-1 { top: -14px; left: -20px; animation-delay: 0s; }
.hf-badge-2 { bottom: 10px; right: -16px; animation-delay: -2s; }
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { opacity:0; transform:translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity:0; transform:translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:translateX(0); }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-secondary); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
}
.section-title .accent { color: var(--gold); }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--pink));
  border-radius: 3px;
  margin: 20px auto 0;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,77,126,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,77,126,0.1);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--bg-card2);
  flex-shrink: 0;
}
.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.badge-hot { background: var(--red); color: #fff; }
.badge-new { background: var(--gold); color: #000; }

.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,16,0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

/* ---- Image watermark ---- */
.img-watermark {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
  border: 1px solid rgba(212,168,67,0.4);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  transition: opacity 0.2s;
}
.product-card:hover .img-watermark { opacity: 0.4; }


.product-actions-overlay {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  opacity: 0; transition: all var(--transition);
}
.product-card:hover .product-actions-overlay { opacity: 1; }

.btn-overlay {
  padding: 8px 16px;
  border-radius: 50px; border: none;
  font-size: 0.75rem; font-weight: 700;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-overlay-detail {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.btn-overlay-detail:hover { background: rgba(255,255,255,0.25); }
.btn-overlay-contact {
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: #fff;
}
.btn-overlay-contact:hover { transform: scale(1.05); }

.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }

.product-cat-tag {
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: 8px;
}

.product-name {
  font-size: 0.9rem; font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 1rem; font-weight: 800;
  color: var(--gold);
}

.btn-contact-card {
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  border: none; border-radius: 50px;
  color: #fff; font-size: 0.75rem; font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-contact-card:hover { transform: scale(1.05); box-shadow: var(--glow-pink); }

/* ===== CATEGORIES SECTION ===== */
/* ===== CATEGORY GRID (redesigned) ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 900px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--bg-card2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}
.cat-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--cat-accent, var(--pink));
  box-shadow:
    0 28px 60px rgba(0,0,0,0.55),
    0 0 0 1px var(--cat-accent, var(--pink)),
    0 0 50px rgba(255,77,126,0.25);
}

/* Glowing background orb */
.cat-card-glow {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  top: -80px; right: -60px;
  background: radial-gradient(circle, var(--cat-accent, #ff4d7e) 0%, transparent 65%);
  opacity: 0.18;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.cat-card:hover .cat-card-glow {
  opacity: 0.35;
  transform: scale(1.25);
}

/* Content */
.cat-card-body {
  position: relative;
  z-index: 1;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(10,10,16,0.92) 0%, transparent 60%);
}

.cat-card-emoji {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 12px var(--cat-accent, #ff4d7e));
  transition: transform 0.35s ease, filter 0.35s ease;
  display: block;
}
.cat-card:hover .cat-card-emoji {
  transform: scale(1.18) rotate(-5deg);
  filter: drop-shadow(0 0 22px var(--cat-accent, #ff4d7e));
}

.cat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.cat-card-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-top: 2px;
}

.cat-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.cat-card-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cat-accent, var(--gold));
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--cat-accent, rgba(255,77,126,0.4));
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.cat-card-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--cat-accent, var(--pink));
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.cat-card:hover .cat-card-btn {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 500px) {
  .cat-card { min-height: 170px; }
  .cat-card-emoji { font-size: 2.4rem; }
  .cat-card-name { font-size: 1rem; }
  .cat-card-body { padding: 18px 16px 16px; }
}

/* ===== COMMITMENTS ===== */
.commits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.commit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.commit-card:hover { transform: translateY(-6px); border-color: rgba(212,168,67,0.3); }
.commit-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(255,77,126,0.15));
  border: 1px solid rgba(255,77,126,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.commit-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.commit-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px; align-items: center;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  flex-wrap: wrap;
}
.filter-sub-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-group-main {
  background: rgba(212,168,67,0.08);
  border-color: rgba(212,168,67,0.22);
  color: var(--gold-light);
}
.filter-sub {
  padding: 6px 12px;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--red), var(--pink));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-pink);
}

/* ===== SEARCH BAR ===== */
.search-wrap {
  position: relative;
  max-width: 420px;
  margin-bottom: 32px;
}
.search-input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition);
}
.search-input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,77,126,0.1); }
.search-input::placeholder { color: var(--text-muted); }
.search-icon {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 1rem; pointer-events: none;
}

/* ===== PRODUCT DETAIL ===== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-image-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card2);
  aspect-ratio: 1;
}
.detail-image-main img { width: 100%; height: 100%; object-fit: cover; }

.detail-info { }
.detail-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--pink); margin-bottom: 12px; }
.detail-name { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; line-height: 1.3; margin-bottom: 16px; }
.detail-price { font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: 24px; }

.detail-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--pink);
}

.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-call-detail {
  flex: 1; min-width: 140px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  border: none; border-radius: 50px;
  color: #fff; font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-call-detail:hover { transform: translateY(-3px); box-shadow: var(--glow-red); }

.btn-zalo-detail {
  flex: 1; min-width: 140px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #0068ff, #00b4ff);
  border: none; border-radius: 50px;
  color: #fff; font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-zalo-detail:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,104,255,0.4); }

.detail-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.detail-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-secondary);
}
.detail-feature span:first-child { font-size: 1.1rem; }

/* ===== RELATED PRODUCTS ===== */
.related-section { padding: 60px 0; background: var(--bg-secondary); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; }
.contact-logo .g { background: linear-gradient(135deg,var(--red),var(--pink),var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.contact-tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.contact-item-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(255,77,126,0.15));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.contact-item-value { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.contact-item-value a { color: var(--pink); transition: color var(--transition); }
.contact-item-value a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit; font-size: 0.88rem;
  outline: none;
  transition: all var(--transition);
}
.form-input:focus, .form-textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,77,126,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  border: none; border-radius: 50px;
  color: #fff; font-size: 0.9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--glow-red); }

.map-box {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}
.map-box iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* ===== REVIEWS + MAP ===== */
.reviews-section {
  position: relative;
  overflow: hidden;
}
.review-note {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}
.reviews-summary {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 18px;
  margin-bottom: 26px;
}
.review-score-card,
.review-metrics,
.review-card,
.reviews-map-card {
  background:
    linear-gradient(145deg, rgba(255,77,126,0.08), rgba(212,168,67,0.05)),
    rgba(20,20,31,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 44px rgba(0,0,0,0.26);
}
.review-score-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 18px;
}
.review-score-main {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-light);
  text-shadow: 0 0 22px rgba(212,168,67,0.34);
}
.review-stars {
  color: var(--gold-light);
  letter-spacing: 2px;
  font-size: 1.1rem;
  text-shadow: 0 0 16px rgba(212,168,67,0.34);
}
.review-stars.small {
  font-size: 0.78rem;
  letter-spacing: 1px;
  white-space: nowrap;
}
.review-stars em {
  color: var(--text-secondary);
  font-style: normal;
  margin-left: 7px;
  letter-spacing: 0;
}
.review-score-label,
.review-meta {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 3px;
}
.review-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 14px;
  overflow: hidden;
}
.review-metrics div {
  padding: 18px;
  background: rgba(10,10,16,0.36);
}
.review-metrics strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
  margin-bottom: 4px;
}
.review-metrics span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  border-radius: 14px;
  padding: 18px;
  min-height: 230px;
}
.review-head {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,77,126,0.55);
  box-shadow: 0 0 18px rgba(255,77,126,0.28);
}
.review-name {
  font-weight: 900;
  color: #fff;
  font-size: 0.92rem;
}
.review-text {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.72;
}
.review-photo-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.review-product-photo {
  position: relative;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.review-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-product-photo span,
.review-product-photo figcaption {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  padding: 2px 4px;
  border-radius: 4px;
  background: rgba(0,0,0,0.62);
  color: rgba(255,255,255,0.86);
  font-size: 0.52rem;
  text-align: center;
}
.reviews-map-wrap {
  margin-top: 28px;
}
.reviews-map-card {
  position: relative;
  height: 390px;
  border-radius: 14px;
  overflow: hidden;
}
.reviews-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}
.map-info-panel {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  max-width: min(360px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(10,10,16,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.map-info-panel strong,
.map-info-panel span {
  display: block;
}
.map-info-panel strong {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.map-info-panel span {
  color: var(--text-secondary);
  font-size: 0.78rem;
  margin-bottom: 8px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 28px; right: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: all var(--transition);
  animation: bounce-in 0.5s ease both;
  position: relative;
}
.float-btn:hover { transform: scale(1.15); }

.float-btn-label {
  position: absolute; right: 60px;
  background: rgba(10,10,16,0.9);
  border: 1px solid var(--border);
  color: #fff; font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.float-btn:hover .float-btn-label { opacity: 1; }

.float-call { background: linear-gradient(135deg, var(--red), var(--pink)); }
.float-zalo { background: linear-gradient(135deg, #0068ff, #00b4ff); }

@keyframes bounce-in { 0%{transform:scale(0)}60%{transform:scale(1.1)}100%{transform:scale(1)} }

/* Pulse ring on zalo button */
.float-zalo::before {
  content:''; position:absolute; inset:-4px;
  border-radius:50%;
  border: 2px solid rgba(0,180,255,0.5);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.5);opacity:0} }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo-main { font-size: 1.3rem; margin-bottom: 6px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; line-height: 1.7; }

.footer-col-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--pink); }

.footer-contact-item { display: flex; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.footer-contact-item span:first-child { color: var(--pink); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== BANNERS ===== */
.marquee-wrap {
  background: linear-gradient(90deg, var(--red), var(--pink), var(--red));
  margin-top: 136px;
  padding: 10px 0;
  overflow: hidden;
}
.marquee {
  display: flex; gap: 40px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 12px;
}
.marquee-item::before { content: '★'; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== EMPTY STATE ===== */
.empty-state { text-align:center; padding:80px 20px; color:var(--text-muted); }
.empty-state .icon { font-size:3rem; margin-bottom:16px; }
.empty-state p { font-size:1rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 176px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.1) 0%, transparent 70%);
  position: relative;
}
.page-hero::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.page-hero-title { font-family:'Playfair Display',serif; font-size:clamp(2rem,5vw,3.5rem); font-weight:900; }
.page-hero-sub { color:var(--text-secondary); margin-top:12px; font-size:0.9rem; }

/* ===== SORT ROW ===== */
.toolbar { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-bottom:28px; }
.result-count { font-size:0.82rem; color:var(--text-muted); }
.sort-select {
  padding:8px 14px;
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-sm); color:var(--text-primary);
  font-size:0.82rem; font-family:inherit; outline:none; cursor:pointer;
}
.sort-select option { background:var(--bg-card); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:32px; }
.breadcrumb a, .breadcrumb span { font-size:0.78rem; color:var(--text-muted); }
.breadcrumb a:hover { color:var(--pink); }
.breadcrumb .sep { color:var(--text-muted); }
.breadcrumb .current { color:var(--text-secondary); }

/* ===== LOADING SKELETON ===== */
.skeleton { background:linear-gradient(90deg,var(--bg-card) 25%,var(--bg-card2) 50%,var(--bg-card) 75%); background-size:200% 100%; animation:shimmer 1.5s infinite; border-radius:var(--radius-sm); }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ===== TOAST ===== */
.toast {
  position:fixed; bottom:100px; right:24px;
  background:var(--bg-card2); border:1px solid rgba(255,77,126,0.3);
  color:var(--text-primary); padding:14px 20px; border-radius:var(--radius-sm);
  font-size:0.82rem; font-weight:600;
  z-index:9999; box-shadow:0 8px 24px rgba(0,0,0,0.4);
  transform:translateX(120%);
  transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { transform:translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .category-bar { display: none; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 74px; }
  .marquee-wrap { margin-top: 74px; }
  .page-hero { padding-top: 118px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .reviews-summary { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 14px; gap: 12px; }
  .logo-badge { width: 68px; height: 64px; }
  .logo-img { width: 58px; height: 58px; }
  .logo-badge::before { width: 66px; height: 66px; }
  .logo-badge::after { height: 76px; }
  .header-actions {
    position: fixed;
    top: 16px;
    right: 14px;
    gap: 8px;
    z-index: 1002;
  }
  .btn-call-header {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    font-size: 0;
  }
  .btn-call-header::before {
    content: '☎';
    color: #fff;
    font-size: 1rem;
    line-height: 1;
  }
  .btn-call-header span { display: none; }
  .hero-stats { gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-content { padding: 60px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions a { width: 100%; justify-content: center; }
  .review-metrics { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-head { grid-template-columns: 48px 1fr; }
  .review-head .review-stars { grid-column: 2; }
  .reviews-map-card { height: 330px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-image-wrap { height: 160px; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 6px 14px; font-size: 0.72rem; }
  .review-score-card { align-items: flex-start; }
  .review-score-main { font-size: 2.5rem; }
  .map-info-panel { top: 12px; left: 12px; right: 12px; max-width: none; }
}

/* ============================================================
   VISUAL EFFECTS — Lung Linh Mờ Ảo
   ============================================================ */

/* Hero aurora orbs */
.fx-aurora-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
@keyframes aorb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(90px, -70px) scale(1.16); }
  65%  { transform: translate(-55px, 85px) scale(0.86); }
  100% { transform: translate(65px, 45px) scale(1.08); }
}

/* Hero content must stay above aurora orbs */
.hero-content { position: relative; z-index: 2; }

/* Floating sparkle particles */
.fx-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 3;
  animation: fx-sparkle-rise linear forwards;
  text-shadow: 0 0 8px currentColor, 0 0 18px currentColor;
  will-change: transform, opacity;
  user-select: none;
  font-style: normal;
  line-height: 1;
}
@keyframes fx-sparkle-rise {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.1); }
  8%   { opacity: 1; transform: translateY(-3vh) rotate(20deg) scale(1); }
  85%  { opacity: 0.85; }
  100% { opacity: 0; transform: translateY(-93vh) rotate(390deg) scale(0.05); }
}

/* Cursor trail dots */
.fx-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99990;
  top: 0; left: 0;
  background: radial-gradient(circle, #f0c965 0%, #ff4d7e 55%, transparent 100%);
  box-shadow: 0 0 8px rgba(240,201,101,0.75), 0 0 16px rgba(255,77,126,0.4);
  will-change: transform;
}

/* Shimmer sweep on card images */
.fx-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 28%,
    rgba(255,255,255,0.15) 46%,
    rgba(255,255,255,0.06) 52%,
    transparent 72%
  );
  z-index: 6;
  pointer-events: none;
  transform: translateX(-130%);
}
.fx-shimmer.run {
  animation: fx-shimmer-sweep 0.68s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes fx-shimmer-sweep {
  from { transform: translateX(-130%); }
  to   { transform: translateX(230%); }
}

/* Shooting star */
.fx-shooting-star {
  position: fixed;
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, #f0c965, #fff);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
  animation: shooting-star 0.8s ease-out forwards;
  transform-origin: left center;
  box-shadow: 0 0 6px #f0c965, 0 0 12px rgba(240,201,101,0.5);
}
@keyframes shooting-star {
  0%   { opacity: 1; transform: rotate(25deg) translateX(0); }
  100% { opacity: 0; transform: rotate(25deg) translateX(35vw); }
}

/* Enhanced product card hover glow */
.product-card:hover {
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,77,126,0.28),
    0 0 45px rgba(212,168,67,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Glowing section divider */
.section-divider {
  box-shadow: 0 0 10px rgba(230,57,70,0.55), 0 0 26px rgba(255,77,126,0.22);
  animation: divider-pulse 3s ease-in-out infinite;
}
@keyframes divider-pulse {
  0%,100% { box-shadow: 0 0 10px rgba(230,57,70,0.5),  0 0 24px rgba(255,77,126,0.2); }
  50%     { box-shadow: 0 0 22px rgba(230,57,70,0.95), 0 0 45px rgba(255,77,126,0.5); }
}

/* Hero gradient text: animated shimmer pan */
.hero-title .gradient-text {
  background: linear-gradient(90deg,
    var(--red) 0%, var(--pink) 25%,
    var(--gold) 50%, var(--pink) 75%,
    var(--red) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-pan 5s linear infinite;
}
@keyframes gradient-pan {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Section label glow pulse */
.section-label {
  animation: label-glow 3.5s ease-in-out infinite;
}
@keyframes label-glow {
  0%,100% { text-shadow: 0 0 8px rgba(255,77,126,0.35); }
  50%     { text-shadow: 0 0 16px rgba(255,77,126,0.85), 0 0 32px rgba(255,77,126,0.4); }
}

/* Disable trail on touch devices */
@media (hover: none) {
  .fx-trail { display: none; }
}

/* ============================================================
   FLASH SALE BAR
   ============================================================ */
.flash-bar {
  background: linear-gradient(90deg, #1a0408 0%, #2d0810 40%, #1a0408 100%);
  border-top: 1px solid rgba(230,57,70,0.3);
  border-bottom: 1px solid rgba(230,57,70,0.3);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
}
.flash-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(230,57,70,0.06) 50%, transparent 100%);
  animation: flash-sweep 4s ease-in-out infinite;
}
@keyframes flash-sweep {
  0%,100% { opacity: 0; }
  50%     { opacity: 1; }
}

.flash-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left */
.flash-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.flash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e63946;
  box-shadow: 0 0 8px #e63946;
  animation: dot-blink 1s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.7); }
}
.flash-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #e63946, #ff4d7e);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.flash-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.flash-subtitle b { color: #f0c965; }

/* Center: countdown */
.flash-center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.flash-cd-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.flash-clock {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(230,57,70,0.35);
  border-radius: 8px;
  padding: 6px 12px 4px;
  min-width: 52px;
  line-height: 1;
}
.cd-unit span {
  font-size: 1.6rem;
  font-weight: 900;
  color: #f0c965;
  font-family: 'Montserrat', monospace;
  text-shadow: 0 0 18px rgba(240,201,101,0.7);
  display: block;
  transition: transform 0.15s ease;
}
.cd-unit span.cd-flip {
  animation: cd-flip-anim 0.25s ease;
}
@keyframes cd-flip-anim {
  0%   { transform: scaleY(1); }
  40%  { transform: scaleY(-0.1); opacity: 0.3; }
  60%  { transform: scaleY(-0.1); opacity: 0.3; }
  100% { transform: scaleY(1); opacity: 1; }
}
.cd-unit small {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 3px;
}
.cd-colon {
  font-size: 1.6rem;
  font-weight: 900;
  color: #e63946;
  animation: dot-blink 1s ease-in-out infinite;
  margin-bottom: 8px;
  line-height: 1;
}

/* Right */
.flash-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.flash-live {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
#liveViewers {
  font-weight: 800;
  color: #4ade80;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.flash-buy-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: linear-gradient(135deg, #e63946, #ff4d7e);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(230,57,70,0.45);
  transition: all 0.3s ease;
  animation: btn-pulse 2.5s ease-in-out infinite;
}
.flash-buy-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 28px rgba(230,57,70,0.65);
}
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 0 18px rgba(230,57,70,0.4); }
  50%     { box-shadow: 0 0 32px rgba(230,57,70,0.75), 0 0 60px rgba(255,77,126,0.3); }
}

@media (max-width: 900px) {
  .flash-subtitle { display: none; }
  .flash-cd-label { display: none; }
}
@media (max-width: 600px) {
  .flash-bar-inner { justify-content: center; gap: 12px; }
  .flash-left  { order: 1; }
  .flash-center { order: 2; }
  .flash-right { order: 3; width: 100%; justify-content: center; }
  .cd-unit { min-width: 44px; padding: 5px 8px 4px; }
  .cd-unit span { font-size: 1.3rem; }
}

/* ============================================================
   SOCIAL PROOF TOASTS
   ============================================================ */
.sp-container {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 320px;
  width: calc(100vw - 40px);
}

.sp-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(16,16,26,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid #e63946;
  border-radius: 12px;
  padding: 12px 14px;
  pointer-events: all;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  transform: translateX(-110%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  position: relative;
}
.sp-toast.sp-in {
  transform: translateX(0);
  opacity: 1;
}
.sp-toast.sp-out {
  transform: translateX(-110%);
  opacity: 0;
}

.sp-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

.sp-body { flex: 1; min-width: 0; }

.sp-line1 {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.sp-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.sp-phone {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.sp-line2 {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-line2 b { color: #f0c965; }

.sp-hl { color: #4ade80; font-weight: 700; }

.sp-line3 {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

.sp-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none; border: none;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.sp-close:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 480px) {
  .sp-container { bottom: 16px; left: 12px; max-width: 290px; }
}
