/* ==============================
   LG Care Sub (lgcaresub.com) - White + Red Theme
   Premium LG-inspired design
   ============================== */

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

/* ---- CSS Variables ---- */
:root {
  --white:       #FFFFFF;
  --bg:          #FFFFFF;
  --bg-2:        #F8F9FB;
  --bg-3:        #F1F3F6;
  --bg-4:        #E9ECF1;
  --red:         #E60028;
  --red-2:       #C8001F;
  --red-dark:    #A50034;
  --red-light:   #FFE5EA;
  --red-glow:    rgba(230, 0, 40, 0.18);
  --red-soft:    rgba(230, 0, 40, 0.08);
  --black:       #0D0D0D;
  --text:        #1A1A1A;
  --text-2:      #3A3F4B;
  --text-muted:  #6B7280;
  --text-dim:    #9CA3AF;
  --border:      #E5E7EB;
  --border-light:#F1F3F6;
  --gold:        #FFB800;
  --green:       #10B981;
  --green-soft:  rgba(16, 185, 129, 0.1);
  --shadow:      0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-md:   0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg:   0 24px 60px rgba(15, 23, 42, 0.1);
  --shadow-red:  0 14px 40px rgba(230, 0, 40, 0.25);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   22px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Noto Sans Thai', 'Inter', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, #FF6B35 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(230, 0, 40, 0.4);
}
.btn-glow { animation: pulse-glow 2s infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-red); }
  50% { box-shadow: 0 20px 50px rgba(230, 0, 40, 0.45); }
}
.btn-outline {
  border: 1.5px solid var(--red);
  color: var(--red);
  background: var(--white);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--white);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-line-hero {
  background: #06C755;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(6, 199, 85, 0.25);
}
.btn-line-hero:hover { background: #05b34b; transform: translateY(-2px); }
.line-icon {
  width: 22px;
  height: 22px;
  background: var(--white);
  color: #06C755;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, var(--red-2) 100%);
  color: var(--white);
  padding: 10px 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.announcement-content {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.announcement-icon { font-size: 16px; flex-shrink: 0; margin-left: 16px; }
.marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}
.marquee span {
  display: inline-block;
  animation: marquee-scroll 35s linear infinite;
  font-size: 13px;
  font-weight: 500;
  padding-right: 40px;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-close {
  flex-shrink: 0;
  margin-right: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}
.announcement-close:hover { color: var(--white); background: rgba(255,255,255,0.15); }

/* ---- Navigation ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-icon {
  font-size: 26px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Iconic LG-style logo (SVG-based — same as lg.com) */
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: url('../img/lg-logo.svg') center/contain no-repeat;
  box-shadow: 0 6px 18px rgba(230,0,40,0.28), 0 0 0 2px #fff, 0 0 0 4px rgba(230,0,40,0.18);
  font-size: 0; /* hide any text-fallback */
  text-indent: -9999px;
  overflow: hidden;
  transition: var(--transition);
}
.logo-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.25) 0%, transparent 45%);
  pointer-events: none;
}
.logo-badge:hover { transform: rotate(-4deg) scale(1.06); box-shadow: 0 10px 24px rgba(230,0,40,0.4), 0 0 0 2px #fff, 0 0 0 4px rgba(230,0,40,0.28); }
.footer-logo .logo-badge { width: 40px; height: 40px; }
.logo-text { color: var(--text); letter-spacing: -0.5px; font-size: 19px; }
.logo-pro { color: var(--red); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
  background: var(--red-soft);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: var(--transition);
}
.nav-phone:hover { color: var(--red); border-color: var(--red); }
.btn-line-nav {
  background: #06C755;
  color: var(--white);
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
}
.btn-line-nav:hover { background: #05b34b; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero Section ---- */
.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-2) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 0, 40, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orb-float 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 0, 40, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation: orb-float 12s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 0, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 0, 40, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  border: 1px solid rgba(230, 0, 40, 0.2);
  color: var(--red);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px var(--red);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  color: var(--text);
}
.hero-price-highlight {
  font-size: clamp(32px, 4.2vw, 54px);
  color: var(--red);
  display: block;
}
.per-month {
  font-size: 0.5em;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.hero-stat {
  text-align: center;
}
.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  display: inline;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-product-showcase {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed;
  animation: ring-spin linear infinite;
}
.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(230, 0, 40, 0.15);
  animation-duration: 25s;
}
.ring-2 {
  width: 75%;
  height: 75%;
  border-color: rgba(230, 0, 40, 0.25);
  animation-duration: 18s;
  animation-direction: reverse;
  border-style: solid;
  border-width: 1px;
}
.ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(230, 0, 40, 0.35);
  animation-duration: 12s;
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.showcase-center {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 42px;
  box-shadow: var(--shadow-lg);
}
.showcase-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.showcase-model { font-size: 28px; font-weight: 900; margin: 8px 0; color: var(--text); }
.showcase-price { font-size: 22px; color: var(--red); font-weight: 800; }
.showcase-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 12px;
}
.floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  box-shadow: var(--shadow);
  z-index: 3;
}
.card-1 { top: 10%; right: -10%; animation: float-card 4s ease-in-out infinite; }
.card-2 { bottom: 20%; left: -15%; animation: float-card 5s ease-in-out infinite 1s; }
.card-3 { top: 60%; right: -5%; animation: float-card 4.5s ease-in-out infinite 0.5s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-icon { font-size: 26px; }
.card-name { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.card-price { font-size: 15px; font-weight: 800; color: var(--red); }

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
.scroll-text { font-size: 11px; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  margin: 8px auto 0;
  animation: scroll-fade 1.5s ease-in-out infinite;
}
@keyframes scroll-fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ---- Benefits Strip ---- */
.benefits-strip {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-right: 1px solid var(--border-light);
}
.benefit-item:last-child { border-right: none; }
.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-title { font-size: 14px; font-weight: 700; color: var(--text); }
.benefit-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ---- Sections ---- */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--red-soft);
  border: 1px solid rgba(230, 0, 40, 0.15);
  color: var(--red);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -1px;
  color: var(--text);
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-footer { text-align: center; margin-top: 48px; }

/* ---- Product Cards ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-emoji-placeholder {
  font-size: 90px;
  transition: var(--transition);
  filter: drop-shadow(0 8px 16px rgba(230, 0, 40, 0.15));
}
.product-card:hover .product-emoji-placeholder { transform: scale(1.15) rotate(-5deg); }
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.prod-svg {
  width: 80%;
  height: 80%;
  transition: var(--transition);
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.1));
}
.product-card:hover .prod-svg {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 16px 32px rgba(230, 0, 40, 0.2));
}
.product-img-wrap {
  background: linear-gradient(160deg, #FFFFFF 0%, #F8F9FB 60%, #FFE5EA 100%) !important;
}
.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(230,0,40,0.04), transparent 50%);
  pointer-events: none;
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.badge-gold   { background: linear-gradient(135deg, var(--gold), #FF9500); color: var(--white); }
.badge-green  { background: var(--green); color: var(--white); }
.badge-blue   { background: linear-gradient(135deg, #0066FF, #0044BB); color: var(--white); }
.badge-orange { background: linear-gradient(135deg, #FF6B35, #FF3300); color: var(--white); }
.product-body { padding: 22px; }
.product-cat { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; font-weight: 700; }
.product-name { font-size: 17px; font-weight: 800; margin-bottom: 6px; line-height: 1.3; color: var(--text); }
.product-model {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: 'Inter', monospace;
  border: 1px solid var(--border-light);
}
.product-model .pm-label { font-size: 10px; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.product-model .pm-value { font-size: 12px; color: var(--red); font-weight: 800; letter-spacing: 0.3px; }

/* Model stamp — visible on product image (top-right corner) */
.model-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 6px 12px 7px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.model-stamp .ms-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.model-stamp .ms-code {
  font-size: 13px;
  color: var(--white);
  font-weight: 900;
  font-family: 'Inter', 'Helvetica', monospace;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Big model chip in product body */
.product-model-big {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff 0%, var(--red-soft) 100%);
  border: 1.5px solid rgba(230, 0, 40, 0.18);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(230, 0, 40, 0.08);
}
.product-model-big .pmb-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.product-model-big > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.product-model-big .pmb-label {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.product-model-big .pmb-value {
  font-size: 15px;
  color: var(--red);
  font-weight: 900;
  font-family: 'Inter', monospace;
  letter-spacing: 0.4px;
  word-break: break-all;
}

/* Disclaimer badge — for products using category placeholder image */
.img-disclaimer {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 184, 0, 0.95);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
  cursor: help;
  letter-spacing: 0.3px;
}

/* Hover effect: model stamp pops */
.product-card:hover .model-stamp {
  background: var(--red);
  border-color: var(--white);
  transform: scale(1.05);
  transition: var(--transition);
}
.product-card:hover .model-stamp .ms-label { color: rgba(255,255,255,0.85); }

@media (max-width: 640px) {
  .model-stamp { top: 8px; right: 8px; padding: 4px 8px 5px; }
  .model-stamp .ms-label { font-size: 8px; }
  .model-stamp .ms-code { font-size: 11px; }
  .product-model-big { padding: 8px 12px; }
  .product-model-big .pmb-icon { font-size: 18px; }
  .product-model-big .pmb-value { font-size: 13px; }
  .product-model-big .pmb-label { font-size: 8px; }
}

/* Color & Variant Chips (visual differentiation per model) */
.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  white-space: nowrap;
}
.product-chip-color {
  background: var(--white);
  border: 1.5px solid var(--border);
}
.product-chip-variant {
  background: var(--red-soft);
  border-color: rgba(230, 0, 40, 0.18);
  color: var(--red);
}
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.08);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
/* Color tint overlay on image area to differentiate same-category cards */
.product-img-wrap { position: relative; }
.color-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.product-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
a.product-card { text-decoration: none; color: inherit; display: block; }
.product-pricing {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.price-label { font-size: 11px; color: var(--text-dim); font-weight: 600; }
.price-monthly {
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.price-unit { font-size: 12px; color: var(--text-muted); }
.product-action {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: var(--text);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: var(--transition);
}
.product-action:hover {
  background: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}

/* Product Skeleton */
.product-skeleton {
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
.product-skeleton::before {
  content: '';
  display: block;
  aspect-ratio: 1;
  background: var(--bg-3);
}
.product-skeleton::after {
  content: '';
  display: block;
  height: 120px;
  margin: 22px;
  background: var(--bg-3);
  border-radius: 8px;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ---- Categories ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-soft) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card:hover::before { opacity: 1; }
.category-card > * { position: relative; z-index: 1; }
.cat-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--red-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.category-card:hover .cat-icon-wrap {
  background: var(--red);
  transform: scale(1.08);
}
.category-card:hover .cat-icon { filter: brightness(0) invert(1); }
.cat-icon { font-size: 30px; transition: var(--transition); }
.cat-name { font-size: 15px; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.cat-sub { font-size: 11px; color: var(--text-dim); margin-bottom: 12px; }
.cat-arrow { font-size: 18px; color: var(--red); opacity: 0; transition: var(--transition); font-weight: 700; }
.category-card:hover .cat-arrow { opacity: 1; }

/* ---- Why Choose Us ---- */
.why-us { background: var(--bg-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 20px 0 28px;
  line-height: 1.8;
}
.why-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.why-card:hover {
  border-color: var(--red);
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}
.wc-icon { font-size: 36px; flex-shrink: 0; }
.wc-title { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.wc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---- Calculator ---- */
.calculator-section { background: var(--white); }
.calculator-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.calc-field { margin-bottom: 32px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.price-slider-wrap { display: flex; flex-direction: column; gap: 12px; }
.price-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  outline: none;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(230, 0, 40, 0.4);
}
.price-display {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
}
.month-options { display: flex; gap: 8px; flex-wrap: wrap; }
.month-btn {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.month-btn:hover, .month-btn.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.calc-result {
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--red-soft) 0%, transparent 100%);
  padding: 28px;
  border-radius: var(--radius);
}
.result-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 700; }
.result-value {
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.result-note { font-size: 12px; color: var(--green); font-weight: 600; }
.btn-calc { width: 100%; justify-content: center; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--bg-2); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.testimonial-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 800; color: var(--text); }
.author-product { font-size: 12px; color: var(--text-dim); }

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.cta-title .gradient-text {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}
.cta-section .btn-primary:hover {
  background: var(--text);
  color: var(--white);
}
.cta-section .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.cta-section .btn-ghost:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.line-icon-btn {
  width: 28px;
  height: 28px;
  background: #06C755;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

/* ---- Footer ---- */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-logo .logo-pro { color: var(--red); }
.footer-logo .logo-icon { color: var(--red); -webkit-text-fill-color: var(--red); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.line-social { background: #06C755; color: var(--white); }
.line-social:hover { background: #05b34b; transform: translateY(-2px); }
.fb-social { background: #1877F2; color: var(--white); }
.fb-social:hover { background: #1664D9; transform: translateY(-2px); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 14px; font-weight: 800; margin-bottom: 20px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---- Floating Buttons ---- */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1) translateY(-3px); }
.float-phone { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.float-phone:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.float-line { background: #06C755; color: var(--white); font-weight: 900; font-size: 18px; }
.float-share { background: var(--white); color: var(--red); border: 1px solid var(--border); font-size: 18px; }
.float-share:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.float-top {
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--border);
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-top.visible { opacity: 1; pointer-events: all; }

/* ---- Share Menu ---- */
.share-menu {
  position: fixed;
  bottom: 24px;
  right: 96px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 97;
  min-width: 200px;
}
.share-menu.open { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(10px);} to { opacity:1; transform: translateY(0);} }
.share-menu h4 { font-size: 13px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.share-options { display: flex; flex-direction: column; gap: 6px; }
.share-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: var(--bg-2);
  text-align: left;
}
.share-opt:hover { background: var(--red-soft); color: var(--red); transform: translateX(4px); }
.share-opt .si {
  width: 28px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: var(--white);
}
.si-fb { background: #1877F2; }
.si-line { background: #06C755; }
.si-tw { background: #000; }
.si-copy { background: var(--text-muted); }

/* ---- Products Page ---- */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-2) 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(230, 0, 40, 0.08) 0%, transparent 60%);
}
.page-hero-title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -1px;
  color: var(--text);
}
.page-hero-sub { font-size: 16px; color: var(--text-muted); }

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  position: sticky;
  top: 76px;
  z-index: 50;
  box-shadow: var(--shadow-md);
}
.filter-grid {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.filter-count {
  background: rgba(255,255,255,0.2);
  color: inherit;
  padding: 1px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.filter-btn:not(.active) .filter-count { background: var(--bg-3); color: var(--text-dim); }

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Trust Cards ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.trust-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.trust-icon {
  font-size: 52px;
  margin-bottom: 16px;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: var(--red-soft);
  border-radius: 50%;
}
.trust-title { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.trust-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.contact-info-card:hover { border-color: var(--red); transform: translateX(4px); }
.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--red-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 700; }
.contact-value { font-size: 20px; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.contact-desc { font-size: 13px; color: var(--text-muted); }
.line-qr-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.qr-placeholder {
  width: 200px;
  height: 200px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.line-id-display {
  font-size: 24px;
  font-weight: 800;
  color: #06C755;
  margin-bottom: 8px;
}

/* ---- Plan Cards (Installment Page) ---- */
.plan-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.plan-card.popular {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: scale(1.04);
}
.plan-card.popular::before {
  content: '🔥 ยอดนิยม';
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 8px;
  text-align: center;
  letter-spacing: 1px;
}
.plan-card.popular { padding-top: 60px; }
.plan-months { font-size: 56px; font-weight: 900; color: var(--red); line-height: 1; margin: 20px 0 4px; }
.plan-label { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; font-weight: 600; }
.plan-example { font-size: 13px; color: var(--text-2); padding: 14px; background: var(--bg-2); border-radius: 10px; line-height: 1.6; }
.plan-example strong { color: var(--red); font-weight: 800; }

/* ---- FAQ ---- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px 26px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.faq-item:hover { border-color: var(--red); }
.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-item summary span { color: var(--red); font-size: 22px; font-weight: 300; transition: var(--transition); }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { font-size: 14px; color: var(--text-muted); margin-top: 14px; line-height: 1.8; }

/* ---- Animation Classes ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="250"] { transition-delay: 0.25s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="350"] { transition-delay: 0.35s; }

/* ---- LG Subscribe Official Logo ---- */
.lg-subscribe-logo {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 8px 18px 8px 14px;
  border-radius: 26px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  box-shadow: 0 6px 16px rgba(230,0,40,0.28);
  position: relative;
  white-space: nowrap;
}
.lg-subscribe-logo .lg-part {
  font-size: 18px;
  font-weight: 900;
  margin-right: 6px;
  letter-spacing: -1px;
}
.lg-subscribe-logo .sub-part {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
}
.lg-subscribe-logo sup {
  font-size: 8px;
  margin-left: 2px;
  vertical-align: super;
  font-weight: 600;
}

/* ---- Sales Agent Card ---- */
.agent-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffafa 100%);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 16px 50px rgba(230,0,40,0.15);
  position: relative;
  overflow: hidden;
}
.agent-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.agent-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
}
.agent-card-header .lg-subscribe-logo {
  flex-shrink: 0;
}
.agent-card-header h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.agent-info {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  align-items: start;
  margin-bottom: 20px;
}
.agent-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(230,0,40,0.3);
}
.agent-avatar-wrap::after {
  content: '✓';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}
.agent-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.agent-position {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 4px;
}
.agent-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.agent-surname {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.5px;
}
.agent-company {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.agent-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: 'Inter', monospace;
}
.agent-code strong {
  color: var(--text);
  background: var(--bg-3);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.agent-actions {
  display: flex;
  gap: 12px;
  position: relative;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}
.agent-actions a {
  flex: 1;
  text-align: center;
  justify-content: center;
}
.agent-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
}
.agent-mini-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.agent-mini-text { line-height: 1.3; }
.agent-mini-name { font-weight: 800; color: var(--text); font-size: 13px; }
.agent-mini-role { font-size: 11px; color: var(--red); }

/* ---- Ownership Badge (เครื่องเป็นของคุณเมื่อครบสัญญา) ---- */
.ownership-banner {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
  padding: 18px 0;
  text-align: center;
}
.ownership-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 700;
}
.ownership-banner-inner strong { font-size: 17px; }
.ownership-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  font-size: 18px;
}

/* ===========================
   Hero Background Slideshow
   =========================== */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 28s infinite;
  filter: brightness(0.95) saturate(1.1);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 40%, rgba(255,255,255,0.96) 100%);
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 4s; }
.hero-slide:nth-child(3) { animation-delay: 8s; }
.hero-slide:nth-child(4) { animation-delay: 12s; }
.hero-slide:nth-child(5) { animation-delay: 16s; }
.hero-slide:nth-child(6) { animation-delay: 20s; }
.hero-slide:nth-child(7) { animation-delay: 24s; }
@keyframes heroFade {
  0%, 11% { opacity: 0; }
  3%, 12% { opacity: 1; }
  16%, 100% { opacity: 0; }
}
.floating-icon-bg {
  position: absolute;
  font-size: 90px;
  opacity: 0.15;
  animation: floatIcon 18s infinite ease-in-out;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(230, 0, 40, 0.15));
  z-index: 0;
}
.fi-1  { top:  8%; left:  6%; animation-delay: 0s;   font-size: 100px; }
.fi-2  { top: 62%; left:  4%; animation-delay: 2s;   font-size: 80px;  }
.fi-3  { top: 12%; right:  6%; animation-delay: 4s;  font-size: 90px;  }
.fi-4  { top: 70%; right:  4%; animation-delay: 6s;  font-size: 110px; }
.fi-5  { top: 38%; left: 18%; animation-delay: 8s;   font-size: 70px;  }
.fi-6  { top: 45%; right: 20%; animation-delay: 10s; font-size: 75px;  }
.fi-7  { top: 85%; left: 35%; animation-delay: 12s;  font-size: 65px;  }
.fi-8  { top:  5%; left: 45%; animation-delay: 14s;  font-size: 70px;  }
.fi-9  { top: 50%; left: 50%; animation-delay: 7s;   font-size: 85px;  }
.fi-10 { top: 25%; left: 70%; animation-delay: 9s;   font-size: 78px;  }
@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(-3deg); opacity: 0.10; }
  25% { transform: translateY(-25px) rotate(2deg); opacity: 0.20; }
  50% { transform: translateY(-15px) rotate(6deg); opacity: 0.25; }
  75% { transform: translateY(-30px) rotate(-2deg); opacity: 0.15; }
}

/* Hero category slideshow — cycling appliance categories */
.hero-category-cycle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 380px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  animation: categorySwap 25s infinite;
  filter: drop-shadow(0 20px 60px rgba(230,0,40,0.2));
}
@keyframes categorySwap {
  0%, 12% { content: '📺'; opacity: 0.06; transform: translate(-50%, -50%) scale(1) rotate(-3deg); }
  14%, 24% { transform: translate(-50%, -50%) scale(0.95) rotate(3deg); }
  16% { opacity: 0; }
  17%, 28% { opacity: 0.06; }
  100% { opacity: 0.04; }
}
.hero-category-cycle::before {
  content: '📺';
  animation: emojiSwap 25s infinite;
}
@keyframes emojiSwap {
  0%, 14%   { content: '📺'; }
  15%, 28%  { content: '❄️'; }
  29%, 42%  { content: '🧊'; }
  43%, 56%  { content: '🫧'; }
  57%, 70%  { content: '🌀'; }
  71%, 85%  { content: '💧'; }
  86%, 100% { content: '💨'; }
}

/* ===========================
   Countdown Banner
   =========================== */
.countdown-banner {
  background: linear-gradient(90deg, #1a1a1a 0%, var(--red-dark) 50%, #1a1a1a 100%);
  color: var(--white);
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.countdown-timer {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.countdown-box {
  background: var(--white);
  color: var(--red);
  font-weight: 900;
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 6px;
  min-width: 38px;
  text-align: center;
  font-family: 'Inter', monospace;
}
.countdown-sep { color: var(--white); font-weight: 900; }

/* Hero showcase center with real product image */
.showcase-center-img {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.showcase-img-wrap {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 50% 40%, #FFFFFF 0%, #FFF5F7 70%, transparent 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(230,0,40,0.18), inset 0 0 40px rgba(230,0,40,0.06);
  animation: scaleBreath 4s ease-in-out infinite;
}
.showcase-img-wrap img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.18));
  z-index: 2;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.showcase-shadow {
  position: absolute;
  bottom: 8%;
  left: 18%;
  right: 18%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, transparent 70%);
  filter: blur(4px);
  z-index: 1;
  animation: shadowPulse 6s ease-in-out infinite;
}
@keyframes scaleBreath { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
@keyframes shadowPulse { 0%,100%{transform:scaleX(1);opacity:0.6} 50%{transform:scaleX(0.85);opacity:0.4} }
.showcase-info { color: var(--text); }
.showcase-info .showcase-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
.showcase-info .showcase-model { font-size: 22px; font-weight: 900; color: #1A1A1A; margin: 2px 0 4px; }
.showcase-info .showcase-price { font-size: 18px; font-weight: 800; color: var(--red); }
.showcase-info .showcase-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: linear-gradient(90deg, #FFE5EA, #FFD0D7);
  color: var(--red-dark);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

/* Floating cards: real thumbnail */
.floating-card .card-thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFF5F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #FFD0D7;
}
.floating-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Trending products strip (marquee with real images) */
.trending-strip {
  padding: 30px 0 36px;
  background: linear-gradient(180deg, #fff 0%, #FAFBFD 100%);
  border-bottom: 1px solid var(--bg-3);
  overflow: hidden;
  position: relative;
}
.trending-head {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
  padding: 0 20px;
}
.trending-tag {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  box-shadow: 0 4px 14px rgba(230,0,40,0.25);
}
.trending-title { font-size: 14px; font-weight: 700; color: var(--text); }
.trending-track {
  display: flex;
  gap: 14px;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  overflow: hidden;
}
.trending-track .tt-loop {
  display: inline-flex;
  gap: 14px;
  animation: trendingScroll 65s linear infinite;
  align-items: center;
}
.trending-track:hover .tt-loop { animation-play-state: paused; }
@keyframes trendingScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tt-card {
  flex-shrink: 0;
  width: 180px;
  height: 200px;
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.tt-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 18px 40px rgba(230,0,40,0.18);
}
.tt-card-img {
  height: 110px;
  background: #FFF5F7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tt-card-img img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  transition: transform 0.4s;
}
.tt-card:hover .tt-card-img img { transform: scale(1.08); }
.tt-card-cat {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.tt-card-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tt-card-price {
  font-size: 13px;
  font-weight: 900;
  color: var(--red);
  margin-top: auto;
}
.tt-card-price .pm { font-size: 10px; color: var(--text-muted); font-weight: 600; }
@media (max-width: 640px) {
  .showcase-img-wrap { width: 180px; height: 180px; }
  .tt-card { width: 150px; height: 180px; }
  .tt-card-img { height: 90px; }
}

/* LG Promo Ticker (replaces hardcoded countdown) */
.lg-ticker { padding: 10px 0; }
.lg-ticker .countdown-inner { gap: 14px; flex-wrap: nowrap; overflow: hidden; }
.lg-ticker-badge {
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.lg-ticker-track {
  display: flex;
  gap: 22px;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.lg-ticker-track .lt-loop {
  display: inline-flex;
  gap: 22px;
  animation: lgMarquee 38s linear infinite;
  align-items: center;
}
.lg-ticker-track:hover .lt-loop { animation-play-state: paused; }
.lt-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.lt-item:hover { background: rgba(255,255,255,0.18); }
.lt-item img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; background: #fff; }
.lt-item .lt-cta { color: #FFD9DF; font-size: 11px; margin-left: 4px; }
@keyframes lgMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Random product background on hero */
.hero-product-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.12;
}
.hero-product-bg .hpb-img {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(230,0,40,0.18)) saturate(1.05);
  animation: hpbFloat 14s ease-in-out infinite;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-product-bg .hpb-img.in { opacity: 1; }
@keyframes hpbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}

/* Promotion details list (under hero) */
.promo-details {
  background: linear-gradient(135deg, #FFE9ED 0%, #FFF5F7 100%);
  padding: 50px 0 30px;
  border-bottom: 1px solid #FFD0D7;
}
.promo-details-head { text-align:center; margin-bottom:24px; }
.promo-details-tag {
  display:inline-block; padding:6px 16px; background:var(--red); color:#fff;
  border-radius:30px; font-size:12px; font-weight:700; letter-spacing:0.5px;
  margin-bottom:10px;
}
.promo-details-title { font-size:26px; font-weight:900; color:#1A1A1A; margin-bottom:6px; }
.promo-details-sub { font-size:14px; color:#6B7280; }
.promo-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); gap:16px; }
.promo-card {
  background:#fff; border-radius:14px; overflow:hidden;
  box-shadow:0 4px 18px rgba(15,23,42,0.06);
  border:1px solid #F0E2E5;
  transition: transform 0.25s, box-shadow 0.25s;
  display:flex; flex-direction:column;
  text-decoration:none; color:inherit;
}
.promo-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(230,0,40,0.15); border-color:var(--red); }
.promo-card-img { aspect-ratio: 16/9; background:#F1F3F6; position:relative; overflow:hidden; }
.promo-card-img img { width:100%; height:100%; object-fit:cover; }
.promo-card-img .promo-card-badge {
  position:absolute; top:10px; left:10px; background:var(--red); color:#fff;
  padding:4px 10px; border-radius:30px; font-size:11px; font-weight:700;
}
.promo-card-body { padding:14px 16px; flex:1; display:flex; flex-direction:column; }
.promo-card-title { font-size:14px; font-weight:700; color:#1A1A1A; line-height:1.4; margin-bottom:6px; }
.promo-card-desc { font-size:12px; color:#6B7280; line-height:1.6; flex:1; margin-bottom:10px; }
.promo-card-cta {
  font-size:12px; color:var(--red); font-weight:700;
  display:inline-flex; align-items:center; gap:4px;
}
.promo-card-cta::after { content:'→'; transition:transform 0.2s; }
.promo-card:hover .promo-card-cta::after { transform:translateX(3px); }
.promo-last-sync { text-align:center; font-size:11px; color:#9CA3AF; margin-top:18px; }
@media (max-width: 640px) {
  .lg-ticker-badge { font-size: 10px; padding: 3px 8px; }
  .lt-item { font-size: 11px; padding: 3px 8px; }
  .lt-item img { width: 18px; height: 18px; }
  .promo-details-title { font-size: 20px; }
}

/* ===========================
   Live Notification (Social Proof)
   =========================== */
.live-noti {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 95;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.18);
  transform: translateX(-110%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.live-noti.show { transform: translateX(0); opacity: 1; }
.live-noti-icon {
  width: 40px;
  height: 40px;
  background: var(--red-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.live-noti-text { line-height: 1.4; }
.live-noti-name { font-size: 13px; font-weight: 700; color: var(--text); }
.live-noti-action { font-size: 12px; color: var(--text-muted); }
.live-noti-time { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.live-noti-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
}

/* ===========================
   Share Menu (Floating)
   =========================== */
.share-menu-wrap {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 97;
}
.share-menu-pop {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  display: none;
  min-width: 220px;
  animation: shareIn 0.3s cubic-bezier(0.4,0,0.2,1);
}
.share-menu-pop.open { display: block; }
@keyframes shareIn { from { opacity:0; transform: translateY(10px);} to { opacity:1; transform: translateY(0);} }
.share-menu-pop h4 {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 8px 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 8px;
}
.share-btn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  text-align: left;
  text-decoration: none;
}
.share-btn-item:hover { background: var(--bg-2); transform: translateX(4px); }
.share-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.share-ico-line { background: #06C755; }
.share-ico-fb { background: #1877F2; }
.share-ico-x { background: #000; }
.share-ico-wa { background: #25D366; }
.share-ico-copy { background: var(--text-muted); }

/* ===========================
   Exit-Intent Popup
   =========================== */
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup.show { display: flex; animation: fadeInOverlay 0.4s ease; }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.exit-popup-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
@keyframes popIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}
.exit-popup-close:hover { background: var(--red); color: var(--white); }
.exit-popup-retention .exit-popup-close {
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  font-size: 20px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0 6px 18px rgba(230,0,40,0.35);
  z-index: 5;
}
.exit-popup-retention .exit-popup-close:hover { transform: rotate(90deg); background: var(--red-dark); }
.exit-popup-icon { font-size: 60px; margin-bottom: 12px; }
.exit-popup-title { font-size: 26px; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.5px; }
.exit-popup-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.exit-popup-btns { display: flex; gap: 10px; }
.exit-popup-btns .btn { flex: 1; justify-content: center; }

/* Retention popup (ยื้อ) — compact, with perks + multiple CTAs */
.exit-popup-retention {
  max-width: 400px !important;
  padding: 20px 20px 14px !important;
  text-align: center;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ep-social-proof {
  display: inline-block;
  background: #FFF5F7;
  border: 1px solid #FFD0D7;
  color: var(--red-dark);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  font-weight: 600;
}
.ep-social-proof strong { color: var(--red); }
.ep-promo-img {
  width: 100%;
  height: 80px;
  max-height: 80px;
  overflow: hidden;
  border-radius: 10px;
  margin: 4px 0 8px;
  background: #FFF5F7;
}
.ep-promo-img img { width: 100% !important; height: 100% !important; max-height: 80px !important; object-fit: cover; display: block; }
.ep-promo-link {
  display: inline-block;
  font-size: 12px;
  color: var(--red);
  margin-top: -10px;
  margin-bottom: 14px;
  text-decoration: none;
  font-weight: 600;
}
.ep-promo-link:hover { text-decoration: underline; }
.exit-popup-retention .exit-popup-title { font-size: 20px; margin-bottom: 6px; line-height: 1.3; }
.ep-lead { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.ep-lead strong { color: var(--text); }
.ep-perks { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; text-align: left; }
.ep-perk {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 11px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFEAEF 100%);
  border: 1px solid #FFD0D7;
  border-radius: 10px;
  transition: transform 0.2s;
}
.ep-perk:hover { transform: translateX(3px); border-color: var(--red); }
.ep-perk-ic {
  width: 30px; height: 30px;
  background: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 3px 9px rgba(230,0,40,0.1);
}
.ep-perk-h { font-size: 12px; font-weight: 800; color: #1A1A1A; line-height: 1.3; }
.ep-perk-s { font-size: 10px; color: #6B7280; margin-top: 1px; line-height: 1.4; }
.ep-cta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 10px; }
.ep-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 9px 4px;
  border-radius: 10px;
  font-size: 11px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1.3;
}
.ep-cta strong { font-size: 12px; font-weight: 800; }
.ep-cta small { font-size: 9px; opacity: 0.9; font-weight: 500; }
.ep-cta-ic {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.ep-cta-line { background: linear-gradient(135deg, #06C755, #03A047); color: #fff; }
.ep-cta-line .ep-cta-ic { background: rgba(255,255,255,0.25); font-family: 'Inter', sans-serif; }
.ep-cta-phone { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; }
.ep-cta-phone .ep-cta-ic { background: rgba(255,255,255,0.2); }
.ep-cta-quote { background: #1A1A1A; color: #fff; }
.ep-cta-quote .ep-cta-ic { background: rgba(255,255,255,0.15); }
.ep-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.ep-soft-dismiss { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.ep-soft-dismiss a { color: var(--red); text-decoration: none; font-weight: 600; }
.ep-soft-dismiss a:hover { text-decoration: underline; }
.ep-link {
  background: none; border: none; padding: 0; color: var(--text-muted);
  cursor: pointer; font-family: inherit; font-size: 12px; text-decoration: underline;
}
.ep-trust {
  font-size: 9px;
  color: #9CA3AF;
  padding-top: 8px;
  border-top: 1px dashed var(--bg-3);
  line-height: 1.4;
}
.ep-trust strong { color: var(--text); }

@media (max-width: 540px) {
  /* Compact mobile popup — fit on small screens, easy close */
  .exit-popup { padding: 12px 10px; align-items: flex-start; padding-top: 60px; }
  .exit-popup-retention {
    max-width: 100% !important;
    padding: 20px 18px 16px !important;
    border-radius: 18px !important;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Sticky close button — always visible at top-right */
  .exit-popup-retention .exit-popup-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    margin-bottom: -10px;
    z-index: 10;
    width: 40px;
    height: 40px;
    font-size: 22px;
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 14px rgba(230,0,40,0.4);
    border: 2px solid #fff;
  }
  .ep-social-proof { font-size: 11px; padding: 4px 10px; margin-bottom: 8px; }
  .ep-promo-img { max-height: 110px; margin: 4px 0 10px; }
  .exit-popup-retention .exit-popup-title { font-size: 18px; margin-bottom: 6px; line-height: 1.3; }
  .ep-lead { font-size: 12px; line-height: 1.5; margin-bottom: 12px; }
  .ep-promo-link { font-size: 11px; margin-bottom: 10px; }
  .ep-perks { gap: 6px; margin-bottom: 12px; }
  .ep-perk { padding: 7px 10px; gap: 9px; }
  .ep-perk-ic { width: 30px; height: 30px; font-size: 16px; border-radius: 8px; }
  .ep-perk-h { font-size: 12px; }
  .ep-perk-s { font-size: 10px; }
  .ep-cta-row { grid-template-columns: 1fr; gap: 6px; margin-bottom: 10px; }
  .ep-cta { flex-direction: row; padding: 9px 12px; text-align: left; gap: 10px; }
  .ep-cta > span:last-child { flex: 1; }
  .ep-cta strong { font-size: 12px; }
  .ep-cta small { font-size: 10px; }
  .ep-cta-ic { width: 26px; height: 26px; font-size: 13px; }
  .ep-soft-dismiss { font-size: 11px; margin-bottom: 8px; }
  .ep-trust { font-size: 9px; padding-top: 8px; }
}

/* ===========================
   Mobile-First Improvements
   =========================== */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 14px; }
  .navbar .container { height: 64px; gap: 10px; }
  .logo-badge { width: 36px; height: 36px; font-size: 14px; }
  .logo-text { font-size: 16px; }
  .nav-actions { display: none; }
  .hero { padding: 50px 0 60px; min-height: auto; }
  .hero-title { font-size: 30px; line-height: 1.15; }
  .hero-price-highlight { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }
  .hero-btns .btn, .hero-btns .btn-line-hero { padding: 12px 20px; font-size: 14px; flex: 1; min-width: 0; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-value { font-size: 24px; }
  .stat-label { font-size: 10px; }
  .ownership-banner { padding: 14px 12px; }
  .ownership-banner-inner { font-size: 13px; gap: 8px; }
  .ownership-banner-inner strong { font-size: 14px; }
  .ownership-badge-icon { width: 30px; height: 30px; font-size: 15px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; }
  .section-tag { font-size: 10px; padding: 4px 12px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card { border-radius: 14px; }
  .product-body { padding: 14px; }
  .product-name { font-size: 13px; line-height: 1.25; }
  .product-desc { font-size: 11px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .product-emoji-placeholder { font-size: 50px; }
  .product-badge { font-size: 9px; padding: 3px 7px; top: 8px; left: 8px; }
  .product-cat { font-size: 9px; }
  .price-monthly { font-size: 19px; }
  .price-label { font-size: 10px; }
  .product-action { padding: 9px; font-size: 12px; border-radius: 8px; }
  .product-pricing { padding-top: 10px; margin-bottom: 12px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-card { padding: 18px 12px; }
  .cat-icon-wrap { width: 50px; height: 50px; }
  .cat-icon { font-size: 24px; }
  .cat-name { font-size: 13px; }
  .cat-sub { font-size: 10px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { padding: 12px 16px; border-right: none !important; }
  .benefit-icon { width: 44px; height: 44px; font-size: 24px; }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer { padding: 40px 0 24px; }
  .footer-grid { gap: 28px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .float-btn { width: 48px; height: 48px; font-size: 18px; }
  .floating-btns { gap: 8px; right: 14px; bottom: 14px; }
  .live-noti { left: 14px; right: 14px; max-width: none; bottom: 80px; }
  .share-menu-wrap { right: 14px; }
  .agent-info { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .agent-avatar-wrap { margin: 0 auto; }
  .agent-position { margin: 0 auto 4px; }
  .agent-actions { flex-direction: column; }
  .agent-card { padding: 22px; }
  .countdown-inner { font-size: 12px; gap: 8px; }
  .countdown-box { font-size: 14px; min-width: 32px; padding: 3px 7px; }
  .page-hero { padding: 60px 0 30px; }
  .page-hero-title { font-size: 28px; }
  .filter-bar { padding: 12px 0; top: 64px; }
  .filter-bar .container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .filter-grid { flex-wrap: nowrap; min-width: max-content; padding-bottom: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 12px; white-space: nowrap; }
  .products-page-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .calculator-box { padding: 22px 16px; }
  .result-value { font-size: 38px; }
  .modal-box { padding: 24px 20px; }
  .modal-title { font-size: 18px; }
  .modal-emoji { font-size: 40px; }
  .exit-popup-box { padding: 28px 22px; }
  .exit-popup-title { font-size: 20px; }
}
@media (max-width: 380px) {
  .products-grid, .products-page-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn, .hero-btns .btn-line-hero { width: 100%; }
}

/* ===========================
   LG Official Promotions (from lg.com)
   =========================== */
.lg-promos-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--white) 100%);
}
.lg-promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.lg-promo-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.lg-promo-item:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}
.lg-promo-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--bg-2);
}
.lg-promo-ph {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--red-soft), var(--bg-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.lg-promo-info { padding: 16px 20px; }
.lg-promo-title { font-size: 14px; font-weight: 800; color: var(--text); line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lg-promo-src { font-size: 11px; color: var(--red); font-weight: 600; }

@media (max-width: 1024px) { .lg-promos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .lg-promos-grid { grid-template-columns: 1fr; } }

/* ===========================
   Cookie Consent (PDPA)
   =========================== */
.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 9999;
  display: none;
  animation: cookieIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-bar.show { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
@keyframes cookieIn { from { transform: translateY(120%); } to { transform: translateY(0); } }
.cookie-icon { font-size: 32px; flex-shrink: 0; }
.cookie-text { flex: 1; font-size: 13px; color: var(--text-2); line-height: 1.6; min-width: 200px; }
.cookie-text a { color: var(--red); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
}
.cookie-btn:hover { border-color: var(--red); color: var(--red); }
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border-color: var(--red);
}
.cookie-btn-accept:hover { color: var(--white); box-shadow: var(--shadow-red); }

/* ===========================
   Lead Form Modal
   =========================== */
.lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lead-modal.show { display: flex; animation: fadeInOverlay 0.3s ease; }
.lead-modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  animation: popIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}
.lead-modal-close:hover { background: var(--red); color: var(--white); }
.lead-modal-header { text-align: center; margin-bottom: 24px; }
.lead-modal-icon { font-size: 50px; margin-bottom: 10px; }
.lead-modal-title { font-size: 22px; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.5px; }
.lead-modal-sub { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.lead-form-group { margin-bottom: 14px; }
.lead-form-group label { display: block; font-size: 12px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.lead-form-group input,
.lead-form-group textarea,
.lead-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--text);
}
.lead-form-group input:focus,
.lead-form-group textarea:focus,
.lead-form-group select:focus { border-color: var(--red); }
.lead-form-group textarea { resize: vertical; min-height: 80px; }
.lead-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.lead-submit-btn:hover { transform: translateY(-2px); }
.lead-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.lead-form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.lead-form-success.show { display: block; }
.lead-form-success-icon { font-size: 64px; margin-bottom: 12px; }
.lead-trust { font-size: 11px; color: var(--text-dim); text-align: center; margin-top: 12px; }

/* WhatsApp floating button */
.float-whatsapp { background: #25D366; color: var(--white); font-size: 22px; font-weight: 900; }
.float-whatsapp:hover { background: #1DA851; }

/* ===========================
   Newsletter Signup
   =========================== */
.newsletter-bar {
  background: linear-gradient(135deg, var(--text) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.newsletter-bar h3 { font-size: 26px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.newsletter-bar p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 14px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  outline: none;
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--white); background: rgba(255,255,255,0.15); }
.newsletter-form button {
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--white);
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.3); }

/* ===========================
   Language Switcher
   =========================== */
.lang-switch {
  display: inline-flex;
  gap: 0;
  background: var(--bg-2);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-btn {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: inherit;
}
.lang-btn.active { background: var(--red); color: var(--white); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.bg-soft { background: var(--bg-2); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .hero-product-showcase { width: 380px; height: 380px; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .calculator-box { grid-template-columns: 1fr; gap: 40px; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 8px;
    z-index: 90;
    box-shadow: var(--shadow);
  }
  .nav-menu.open .nav-actions { display: flex; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .benefit-item:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .benefit-item:nth-last-child(-n+2) { border-bottom: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .products-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { border-right: none; }
  .products-page-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
