/* ============================================================
   style.css — วัยรุ่นตุรกี Official
   วางไฟล์นี้ในโฟลเดอร์เดียวกับ index.html
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES — แก้ไขสีหลักได้ที่นี่
   ============================================================ */
:root {
  --bg:     #080808;
  --bg2:    #111;
  --bg3:    #181818;
  --bg4:    #1e1208;
  --gold:   #c9a84c;
  --gold2:  #e8c96b;
  --gold3:  #f5e09a;
  --red:    #b52b1e;
  --red2:   #d9392a;
  --red3:   #e84c3a;
  --cream:  #f0e6cf;
  --cream2: #d4c4a0;
  --gray:   #6b6b6b;
  --gray2:  #444;
  --gray3:  #2a2a2a;
  --white:  #fff;
  --border:  rgba(201, 168, 76, .18);
  --border2: rgba(201, 168, 76, .35);
  --font:   'Sarabun', 'Noto Sans Thai', sans-serif;
  --r:  8px;
  --r2: 12px;
  --r3: 16px;
  --sh:   0 2px 20px rgba(0, 0, 0, .6);
  --glow: 0 0 24px rgba(201, 168, 76, .25);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   3. TYPOGRAPHY HELPERS
   ============================================================ */
.label { font-size: .65rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.tag-red {
  background: rgba(181, 43, 30, .25);
  border: 1px solid rgba(181, 43, 30, .5);
  color: #ff9080;
  border-radius: 4px;
  padding: 3px 10px;
  display: inline-block;
}
.tag-gold {
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold);
  border-radius: 4px;
  padding: 3px 10px;
  display: inline-block;
}

/* ============================================================
   4. BUTTONS — แก้ไขสีปุ่มได้ที่นี่
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: .93rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: .25s ease;
  font-family: var(--font);
  letter-spacing: .3px;
  line-height: 1;
}
.btn-line-primary {
  background: #06c755;
  color: #fff;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--r);
  box-shadow: 0 4px 20px rgba(6, 199, 85, .35);
}
.btn-line-primary:hover {
  background: #04b84d;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(6, 199, 85, .5);
}
.btn-line-sm { background: #06c755; color: #fff; font-size: .85rem; padding: 9px 18px; border-radius: 6px; }
.btn-line-sm:hover { background: #04b84d; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(181, 43, 30, .5); }
.btn-outline-gold { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #000; }
.btn-outline-cream { background: transparent; border: 1.5px solid rgba(240, 230, 207, .35); color: var(--cream2); }
.btn-outline-cream:hover { border-color: var(--cream); color: var(--cream); }

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8, 8, 8, .97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.hdr-wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 12px; }

/* Logo */
.hdr-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr-logo img { height: 50px; filter: drop-shadow(0 0 10px rgba(201, 168, 76, .55)); }
.hdr-logo-txt .t1 { font-size: 1.1rem; font-weight: 900; color: var(--gold); letter-spacing: .5px; line-height: 1.1; }
.hdr-logo-txt .t2 { font-size: .58rem; font-weight: 700; color: rgba(201, 168, 76, .55); letter-spacing: 2.5px; text-transform: uppercase; }

/* Desktop nav */
nav { display: flex; align-items: center; gap: 2px; }
nav a { font-size: .8rem; font-weight: 600; color: rgba(240, 230, 207, .7); padding: 6px 9px; border-radius: 5px; transition: .2s; }
nav a:hover { color: var(--gold); background: rgba(201, 168, 76, .08); }
nav a.on { color: var(--gold); }
nav a.on::after { content: ''; display: block; height: 2px; background: var(--red); border-radius: 1px; margin-top: 2px; }

/* Hamburger */
.hbg { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hbg span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 1px; transition: .25s; }

/* Mobile nav */
.mnav {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: rgba(12, 12, 12, .98);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px; flex-direction: column; gap: 6px;
  z-index: 999; backdrop-filter: blur(16px);
}
.mnav a { font-size: .95rem; font-weight: 600; padding: 10px 14px; border-radius: var(--r); color: var(--cream); transition: .2s; }
.mnav a:hover { background: rgba(201, 168, 76, .1); color: var(--gold); }

/* ============================================================
   6. SEARCH BAR
   ============================================================ */
.srch { background: var(--bg4); padding: 11px 0; margin-top: 66px; border-bottom: 1px solid rgba(201, 168, 76, .1); }
.srch-row { display: flex; gap: 10px; max-width: 640px; margin: 0 auto; }
.srch-row input {
  flex: 1; padding: 9px 16px;
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 50px; color: var(--cream);
  font-family: var(--font); font-size: .88rem;
  outline: none; transition: .2s;
}
.srch-row input:focus { border-color: var(--gold); }
.srch-row input::placeholder { color: var(--gray); }
.srch-row button {
  padding: 9px 20px; background: var(--gold); border: none;
  border-radius: 50px; color: #000; font-weight: 800;
  cursor: pointer; font-family: var(--font); font-size: .85rem; transition: .2s;
}
.srch-row button:hover { background: var(--gold2); }
#srch-out { max-width: 640px; margin: 7px auto 0; font-size: .8rem; color: var(--gray); display: none; }

/* ============================================================
   7. HERO SECTION
   ============================================================ */
#hero {
  min-height: 90vh; display: flex; align-items: center;
  background: linear-gradient(155deg, #160800 0%, #0c0c0c 50%, #08020e 100%);
  position: relative; overflow: hidden; padding: 50px 0 60px;
}
#hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--gold) 60%, var(--red) 80%, transparent 100%);
}
.hero-glow1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 43, 30, .12) 0%, transparent 65%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-glow2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .07) 0%, transparent 65%);
  bottom: 0; left: 0; pointer-events: none;
}
.hero-wm {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 44%; max-width: 520px;
  opacity: .055; filter: blur(1px) grayscale(1) brightness(1.4);
  pointer-events: none; z-index: 0;
}
.hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; position: relative; z-index: 2; width: 100%; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px rgba(181, 43, 30, .6); }
.hero-kicker span { font-size: .75rem; font-weight: 700; color: rgba(240, 230, 207, .6); letter-spacing: 1.5px; text-transform: uppercase; }
.hero-h1 { font-size: clamp(2rem, 4.8vw, 3.6rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.hero-h1 .g { color: var(--gold); display: block; text-shadow: 0 0 40px rgba(201, 168, 76, .3); }
.hero-h1 .w { color: #fff; display: block; }
.hero-sub { font-size: .88rem; font-weight: 700; color: var(--gold2); font-style: italic; margin-bottom: 12px; letter-spacing: .3px; }
.hero-p { font-size: .95rem; color: rgba(240, 230, 207, .7); margin-bottom: 32px; max-width: 520px; line-height: 1.85; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.h-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50px; padding: 6px 14px;
  font-size: .75rem; color: rgba(240, 230, 207, .6);
}
.h-pill .ic { color: var(--gold); font-size: .85rem; }

/* Mascot */
.hero-mascot img {
  width: clamp(180px, 27vw, 320px);
  filter: drop-shadow(0 0 32px rgba(201, 168, 76, .45)) drop-shadow(0 0 10px rgba(181, 43, 30, .3));
  animation: fl 4.5s ease-in-out infinite;
}
@keyframes fl {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(1deg); }
}
.hero-mascot-ring { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-mascot-ring::before {
  content: ''; position: absolute; width: 360px; height: 360px;
  border-radius: 50%; border: 1px solid rgba(201, 168, 76, .1);
  animation: spin 20s linear infinite; pointer-events: none;
}
.hero-mascot-ring::after {
  content: ''; position: absolute; width: 280px; height: 280px;
  border-radius: 50%; border: 1px dashed rgba(181, 43, 30, .15);
  animation: spin 14s linear infinite reverse; pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   8. STATS BAR
   ============================================================ */
#stats { background: var(--bg4); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 22px 20px; text-align: center; border-right: 1px solid var(--border); transition: .25s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201, 168, 76, .04); }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-num span { font-size: 1.1rem; }
.stat-lbl { font-size: .75rem; color: rgba(240, 230, 207, .5); letter-spacing: .5px; }

/* ============================================================
   9. TRUST SECTION
   ============================================================ */
#trust { background: var(--bg2); padding: 56px 0; }
.trust-head { text-align: center; margin-bottom: 36px; }
.trust-head h2 { font-size: 1.6rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.trust-head p { font-size: .9rem; color: rgba(240, 230, 207, .55); max-width: 540px; margin: 0 auto; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 26px 22px;
  transition: .25s; position: relative; overflow: hidden;
}
.trust-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.trust-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--glow); }
.trust-ic {
  width: 44px; height: 44px; border-radius: var(--r);
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.trust-card h3 { font-size: .95rem; font-weight: 800; color: var(--gold); margin-bottom: 7px; }
.trust-card p { font-size: .82rem; color: rgba(240, 230, 207, .6); line-height: 1.7; }

/* ============================================================
   10. PRODUCTS SECTION
   ============================================================ */
#products { background: var(--bg); padding: 60px 0; }
.sec-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.sec-title-wrap h2 { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.sec-title-wrap p { font-size: .82rem; color: var(--gray); }
.sec-more {
  font-size: .8rem; font-weight: 700; color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: 7px 16px; border-radius: 5px; transition: .2s; white-space: nowrap;
}
.sec-more:hover { background: rgba(201, 168, 76, .1); }
.prod-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.prod-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  transition: .25s; display: flex; flex-direction: column; position: relative;
}
.prod-card:hover { border-color: var(--border2); transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0, 0, 0, .5); }
.prod-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--red); color: #fff;
  font-size: .6rem; font-weight: 800; padding: 3px 8px;
  border-radius: 3px; letter-spacing: .5px; text-transform: uppercase;
}
.prod-img {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, #1e1008 0%, #0d0808 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; border-bottom: 1px solid var(--border);
}
.prod-body { padding: 14px 13px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.prod-cat { font-size: .6rem; font-weight: 800; color: var(--red3); text-transform: uppercase; letter-spacing: 1px; }
.prod-name { font-size: .87rem; font-weight: 800; color: #fff; line-height: 1.3; }
.prod-feat { list-style: none; display: flex; flex-direction: column; gap: 3px; margin: 2px 0; }
.prod-feat li { font-size: .7rem; color: rgba(240, 230, 207, .6); display: flex; gap: 6px; align-items: flex-start; line-height: 1.35; }
.prod-feat li::before { content: '✓'; color: var(--gold); font-weight: 900; flex-shrink: 0; font-size: .7rem; }
.prod-disc { font-size: .62rem; color: var(--gray); font-style: italic; border-top: 1px solid rgba(255, 255, 255, .06); padding-top: 6px; margin-top: auto; }
.prod-btn {
  display: block; width: 100%; text-align: center; padding: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #000; font-size: .78rem; font-weight: 800;
  border: none; cursor: pointer; transition: .2s; font-family: var(--font);
}
.prod-btn:hover { background: linear-gradient(135deg, var(--gold2), var(--gold3)); }

/* LINE Banner */
.line-banner {
  background: linear-gradient(135deg, #018c3c 0%, #06c755 50%, #04b84d 100%);
  padding: 32px 24px; border-radius: var(--r2);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin: 40px 0 0; position: relative; overflow: hidden;
}
.line-banner::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}
.line-banner-txt h3 { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 5px; }
.line-banner-txt p { font-size: .87rem; color: rgba(255, 255, 255, .8); }
.line-banner-btn {
  background: #fff; color: #018c3c;
  font-size: 1rem; font-weight: 900; padding: 14px 32px;
  border-radius: var(--r); border: none; cursor: pointer;
  font-family: var(--font); transition: .2s; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.line-banner-btn:hover { background: #f0fff0; transform: scale(1.03); }

/* ============================================================
   11. KNOWLEDGE / BLOG SECTION
   ============================================================ */
#knowledge { background: linear-gradient(180deg, var(--bg) 0%, var(--bg4) 100%); padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.blog-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; transition: .25s; cursor: pointer; }
.blog-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.blog-thumb {
  width: 100%; height: 130px;
  background: linear-gradient(135deg, #1a0800, #200000);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative; overflow: hidden;
}
.blog-num {
  position: absolute; top: 9px; left: 9px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.blog-body { padding: 13px 12px; }
.blog-cat {
  font-size: .6rem; font-weight: 800; color: #fff;
  background: var(--red); padding: 2px 7px; border-radius: 3px;
  display: inline-block; margin-bottom: 7px; letter-spacing: .5px; text-transform: uppercase;
}
.blog-title { font-size: .83rem; font-weight: 800; color: var(--cream); line-height: 1.35; margin-bottom: 7px; }
.blog-desc { font-size: .73rem; color: rgba(240, 230, 207, .5); line-height: 1.5; margin-bottom: 9px; }
.blog-read { font-size: .75rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 5px; }
.blog-read::after { content: '→'; transition: .2s; }
.blog-card:hover .blog-read::after { transform: translateX(4px); }

/* ============================================================
   12. FAQ SECTION
   ============================================================ */
#faq { background: var(--bg2); padding: 60px 0; }
.faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: .2s; }
.faq-item.on { border-color: var(--border2); }
.faq-q {
  padding: 16px 20px; font-size: .93rem; font-weight: 700; color: var(--cream);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; transition: .2s; user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-ic {
  color: var(--gold); font-size: 1.1rem; transition: .25s; flex-shrink: 0;
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201, 168, 76, .3); border-radius: 50%;
}
.faq-item.on .faq-ic { transform: rotate(45deg); background: rgba(201, 168, 76, .1); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; font-size: .87rem; color: rgba(240, 230, 207, .68); padding: 0 20px; line-height: 1.8; }
.faq-item.on .faq-a { max-height: 260px; padding: 0 20px 16px; }

/* ============================================================
   13. SYMPTOM CHECKER SECTION
   ============================================================ */
#symptom { background: linear-gradient(155deg, #080808, #140500); padding: 60px 0; }
.sym-wrap { max-width: 720px; margin: 0 auto; }
.sym-box {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--r3); padding: 36px; position: relative; overflow: hidden;
}
.sym-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.sym-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.sym-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--r);
  background: rgba(181, 43, 30, .15); border: 1px solid rgba(181, 43, 30, .3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.sym-box h2 { font-size: 1.35rem; font-weight: 900; color: #fff; margin-bottom: 3px; }
.sym-box .sym-sub { font-size: .8rem; color: rgba(240, 230, 207, .5); }
.sym-box p.desc { font-size: .87rem; color: rgba(240, 230, 207, .62); margin-bottom: 20px; line-height: 1.8; }

/* Quick symptom buttons */
.sym-quick { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sym-btn {
  background: rgba(201, 168, 76, .08); border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 50px; padding: 6px 14px; font-size: .78rem; color: var(--gold2);
  cursor: pointer; transition: .2s; font-family: var(--font);
}
.sym-btn:hover { background: rgba(201, 168, 76, .18); border-color: var(--gold); }
.sym-box textarea {
  width: 100%; padding: 14px 16px; min-height: 100px;
  background: rgba(0, 0, 0, .45); border: 1px solid rgba(201, 168, 76, .2);
  border-radius: var(--r); color: var(--cream);
  font-family: var(--font); font-size: .9rem;
  resize: vertical; outline: none; transition: .2s; margin-bottom: 14px;
}
.sym-box textarea:focus { border-color: var(--gold); background: rgba(0, 0, 0, .6); }
.sym-box textarea::placeholder { color: var(--gray); }
.sym-analyze-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  color: #fff; font-size: .97rem; font-weight: 800;
  border: none; cursor: pointer; border-radius: var(--r);
  font-family: var(--font); transition: .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.sym-analyze-btn:hover { background: linear-gradient(135deg, var(--red2), var(--red3)); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(181, 43, 30, .4); }
.sym-analyze-btn .spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin2 .8s linear infinite;
}
@keyframes spin2 { to { transform: rotate(360deg); } }

/* Symptom info cards */
.sym-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.sym-info-card { background: rgba(0, 0, 0, .3); border: 1px solid rgba(201, 168, 76, .12); border-radius: var(--r); padding: 14px; text-align: center; }
.sym-info-card .si-num { font-size: 1.4rem; font-weight: 900; color: var(--gold); margin-bottom: 2px; }
.sym-info-card .si-lbl { font-size: .7rem; color: rgba(240, 230, 207, .5); }

/* Results */
.s-result { display: none; margin-top: 24px; }
.r-section { background: rgba(0, 0, 0, .3); border: 1px solid rgba(201, 168, 76, .12); border-radius: var(--r); padding: 16px 18px; margin-bottom: 12px; }
.r-section-danger { background: rgba(120, 20, 10, .2); border-color: rgba(181, 43, 30, .35); }
.r-tag { font-size: .65rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.r-tag-red { color: #ff9080; }
.r-ul { list-style: none; }
.r-ul li { font-size: .85rem; color: rgba(240, 230, 207, .78); padding: 3px 0; display: flex; gap: 8px; line-height: 1.5; }
.r-ul li::before { content: '•'; color: var(--gold); flex-shrink: 0; }
.r-ul-danger li::before { color: #ff8060; }
.disclaim { background: rgba(201, 168, 76, .06); border: 1px solid rgba(201, 168, 76, .15); border-radius: var(--r); padding: 14px 16px; margin-top: 16px; }
.disclaim p { font-size: .76rem; color: rgba(240, 230, 207, .5); line-height: 1.7; }

/* ============================================================
   14. REVIEWS SECTION
   ============================================================ */
#reviews { background: var(--bg2); padding: 60px 0; }
.review-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.review-featured {
  background: linear-gradient(135deg, #1e1208, #0d0808);
  border: 1px solid var(--border2); border-radius: var(--r2); padding: 28px; position: relative; overflow: hidden;
}
.review-featured::before {
  content: '"'; position: absolute; top: 10px; right: 20px;
  font-size: 6rem; color: rgba(201, 168, 76, .06);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.rv-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.rv-text { font-size: .92rem; color: rgba(240, 230, 207, .78); font-style: italic; margin-bottom: 16px; line-height: 1.8; }
.rv-auth { display: flex; align-items: center; gap: 12px; }
.rv-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #2b1a0e, #1a0800);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.rv-name { font-size: .87rem; font-weight: 700; color: var(--cream); }
.rv-loc { font-size: .72rem; color: var(--gray); }
.rv-tag { font-size: .6rem; font-weight: 800; background: rgba(201, 168, 76, .12); color: var(--gold); padding: 2px 8px; border-radius: 3px; display: inline-block; margin-top: 3px; letter-spacing: .5px; }
.review-mini-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.rv-mini { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; transition: .2s; }
.rv-mini:hover { border-color: var(--border2); }
.rv-mini .rv-stars { font-size: .82rem; margin-bottom: 6px; }
.rv-mini .rv-text { font-size: .82rem; margin-bottom: 10px; }

/* Video placeholders */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vid-ph { background: var(--bg3); border: 2px dashed rgba(201, 168, 76, .2); border-radius: var(--r2); padding: 32px 16px; text-align: center; cursor: pointer; transition: .2s; }
.vid-ph:hover { border-color: var(--gold); background: rgba(201, 168, 76, .03); }
.vid-ph .pi { font-size: 2.2rem; margin-bottom: 8px; }
.vid-ph .vt { font-size: .82rem; font-weight: 700; color: var(--gold); margin-bottom: 3px; }
.vid-ph .vs { font-size: .73rem; color: var(--gray); }

/* ============================================================
   15. CTA / CONTACT SECTION
   ============================================================ */
#cta {
  background: linear-gradient(155deg, #120400, #1a0e06);
  border-top: 1px solid var(--border); padding: 70px 0;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 43, 30, .1) 0%, transparent 65%);
  left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.cta-wm { position: absolute; right: 3%; bottom: -5%; width: 26%; max-width: 260px; opacity: .05; filter: blur(1.5px) grayscale(1); pointer-events: none; }
.cta-box { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-box h2 { font-size: 1.85rem; font-weight: 900; color: #fff; margin-bottom: 10px; line-height: 1.25; }
.cta-box h2 em { color: var(--gold); font-style: normal; }
.cta-box p { font-size: .9rem; color: rgba(240, 230, 207, .6); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-main-btn { margin-bottom: 20px; }
.cta-channels { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }

/* Contact chips */
.contact-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50px; padding: 8px 16px;
  font-size: .82rem; color: rgba(240, 230, 207, .65); transition: .2s; cursor: pointer;
}
.chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 168, 76, .08); }

.cta-info { background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .07); border-radius: var(--r); padding: 16px 20px; }
.cta-info p { font-size: .8rem; color: rgba(240, 230, 207, .45); line-height: 1.8; }
.cta-info strong { color: rgba(240, 230, 207, .65); }

/* ============================================================
   16. FOOTER
   ============================================================ */
footer { background: #040404; border-top: 1px solid var(--border); padding: 48px 0 22px; position: relative; overflow: hidden; }
.ft-wm { position: absolute; right: 3%; bottom: 5%; width: 18%; max-width: 160px; opacity: .03; filter: blur(2px) grayscale(1); pointer-events: none; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; margin-bottom: 28px; position: relative; z-index: 1; }
.ft-logo img { height: 58px; filter: drop-shadow(0 0 8px rgba(201, 168, 76, .3)); margin-bottom: 10px; }
.ft-brand-name { font-size: 1rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.ft-brand-p { font-size: .77rem; color: rgba(240, 230, 207, .38); line-height: 1.75; margin-bottom: 16px; }
.ft-col h4 { font-size: .82rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; letter-spacing: .5px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ft-col ul li a { font-size: .77rem; color: rgba(240, 230, 207, .42); transition: .2s; display: flex; align-items: center; gap: 6px; }
.ft-col ul li a:hover { color: var(--gold); }
.ft-bottom { border-top: 1px solid rgba(255, 255, 255, .05); padding-top: 18px; text-align: center; position: relative; z-index: 1; }
.ft-bottom p { font-size: .72rem; color: rgba(240, 230, 207, .3); line-height: 1.75; }
.ft-disc { margin-top: 8px; font-size: .68rem; color: rgba(240, 230, 207, .22); max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ============================================================
   17. FLOATING LINE BUTTON
   ============================================================ */
.fl-line {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #06c755; color: #fff;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 4px 24px rgba(6, 199, 85, .55), 0 0 0 4px rgba(6, 199, 85, .15);
  cursor: pointer; transition: .25s;
  animation: pulse 2.5s ease-in-out infinite;
}
.fl-line:hover { transform: scale(1.15); box-shadow: 0 6px 36px rgba(6, 199, 85, .75), 0 0 0 8px rgba(6, 199, 85, .2); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(6, 199, 85, .55), 0 0 0 4px rgba(6, 199, 85, .15); }
  50%       { box-shadow: 0 4px 24px rgba(6, 199, 85, .55), 0 0 0 10px rgba(6, 199, 85, .07); }
}

/* ============================================================
   18. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .prod-grid  { grid-template-columns: repeat(3, 1fr); }
  .blog-grid  { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   19. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 860px) {
  nav, #hdr .hdr-line { display: none; }
  .hbg { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mascot, .hero-wm { display: none; }
  .review-layout { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .prod-grid   { grid-template-columns: repeat(2, 1fr); }
  .blog-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .trust-grid  { grid-template-columns: 1fr; }
  .vid-grid    { grid-template-columns: 1fr; }
  .ft-grid     { grid-template-columns: 1fr; }
  .sym-info    { grid-template-columns: repeat(3, 1fr); }
  section      { padding: 44px 0; }
  .sym-box     { padding: 22px 16px; }
  /* ปุ่มมือถือให้ใหญ่และกดง่าย */
  .btn-line-primary { font-size: 1.05rem !important; padding: 16px 28px !important; width: 100%; justify-content: center; }
  .cta-channels .btn { font-size: .88rem !important; padding: 13px 20px !important; flex: 1 1 calc(50% - 5px); }
  .fl-line { width: 68px; height: 68px; font-size: 2rem; bottom: 20px; right: 16px; }
  .line-banner { flex-direction: column; text-align: center; }
  .line-banner-btn { width: 100%; justify-content: center; }
  .prod-btn { padding: 13px !important; font-size: .85rem !important; }
}