/* ═══════════════════════════════════════════════
   RUNG SIAM NAKA Co., Ltd. — Global Stylesheet
   ═══════════════════════════════════════════════ */

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

/* ── CSS Variables — Light Theme ── */
:root {
  --bg-0: #FFFFFF;
  --bg-1: #F8FAFC;
  --bg-2: #FFFFFF;
  --bg-3: #F1F5F9;
  --border: rgba(15,23,42,0.08);
  --border-l: rgba(15,23,42,0.14);

  --orange: #E8650A;
  --orange-dk: #C4540A;
  --orange-glow: rgba(232,101,10,0.10);

  --blue: #2563EB;
  --blue-lt: #3B82F6;
  --green: #16A34A;
  --green-lt: #22C55E;
  --red: #DC2626;

  --t1: #0F172A;
  --t2: #1E293B;
  --t3: #475569;
  --t4: #94A3B8;

  --font-th: 'Sarabun', 'Arial', sans-serif;
  --font-en: 'Inter', 'Arial', sans-serif;

  --nav-h: 70px;
  --max-w: 1320px;
  --gap: clamp(1rem, 3vw, 2rem);
  --r: 10px;
  --r-sm: 6px;

  --shadow-sm: 0 1px 4px rgba(15,23,42,0.06), 0 2px 8px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.05);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.07);
  --shadow-glow: 0 0 24px rgba(232,101,10,0.15);
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; }
.en { font-family: var(--font-en); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--bg-3); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,101,10,0.28);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--bg-3);
  color: var(--t2);
  border: 1px solid var(--border-l);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--t1); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Cards ── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-body { padding: 1.5rem; }
.card-img { width: 100%; height: 220px; object-fit: cover; background: var(--bg-3); }

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-orange { background: var(--orange-glow); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }
.badge-blue { background: rgba(37,99,235,0.15); color: var(--blue-lt); border: 1px solid rgba(37,99,235,0.3); }
.badge-green { background: rgba(22,163,74,0.15); color: var(--green-lt); border: 1px solid rgba(22,163,74,0.3); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--t3); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(15,23,42,0.06);
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), #FCD34D);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.nav-brand-text { line-height: 1.2; }
.nav-brand-th { font-size: 1.05rem; font-weight: 700; color: var(--t1); }
.nav-brand-en { font-size: 0.62rem; color: var(--t4); font-family: var(--font-en); letter-spacing: 0.08em; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E293B;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: #0F172A; background: rgba(15,23,42,0.06); }
.nav-link.active { color: var(--orange); }

/* Dropdown */
.dropdown .nav-link::after { content: '▾'; font-size: 0.6rem; opacity: 0.6; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(15,23,42,0.12), 0 2px 8px rgba(15,23,42,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  color: var(--t2);
  transition: all 0.15s;
  border-radius: 6px;
  margin: 0.2rem 0.3rem;
}
.dropdown-item:hover { background: var(--orange-glow); color: var(--orange); }
.dropdown-item .di-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--t3);
  font-family: var(--font-en);
}
.nav-phone i { color: var(--orange); font-size: 0.8rem; }

/* Cart button */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange);
  font-size: 1rem;
  transition: all 0.2s;
}
.nav-cart:hover { background: var(--orange); color: #fff; }
.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-1);
  display: none;
}
.cart-count-badge.visible { display: flex; }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t2);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A1220;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=2000&q=85");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(5,11,20,0.85) 0%,
      rgba(5,11,20,0.70) 50%,
      rgba(15,30,55,0.85) 100%),
    radial-gradient(ellipse 70% 60% at 65% 30%, rgba(232,101,10,0.22) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: var(--nav-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--orange);
  background: var(--orange-glow);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero h1 .highlight { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--t3);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-en);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--t4); margin-top: 0.25rem; }

/* ── Hero Photo Background — text overrides ── */
.hero { background: var(--bg-0); }
.hero-title,
.hero h1 { color: #F1F5F9 !important; }
.hero h1 .text-orange,
.hero h1 .highlight { color: #FDBA74 !important; }
.hero-sub { color: #CBD5E1 !important; }
.hero-badge {
  background: rgba(232,101,10,0.20) !important;
  border-color: rgba(232,101,10,0.50) !important;
  color: #FDBA74 !important;
}
.hero-stats { border-top-color: rgba(255,255,255,0.12) !important; }
.hero-stat__num,
.hero-stat-num { color: #FDBA74 !important; }
.hero-stat__label,
.hero-stat-label { color: #94A3B8 !important; }

/* Floating cards */
.hero-card {
  background: rgba(10,18,32,0.70) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #F1F5F9 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35) !important;
}
.hero-card span { color: #E2E8F0 !important; }
.hero-card i { color: #FDBA74 !important; }

/* Buttons stay the same — outline btn needs tweak */
.hero .btn-outline {
  border-color: rgba(255,255,255,0.40) !important;
  color: #F1F5F9 !important;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.70) !important;
}

/* hero-grid overlay on top of photo */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-glow { z-index: 0; }
.hero-bg, .hero-bg::after { z-index: 0; }
.hero-content, .hero-visual { z-index: 2; position: relative; }

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(160deg, #FFFBF7 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(232,101,10,0.07) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p { color: var(--t3); font-size: 1.05rem; max-width: 560px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--t4);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--t3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { font-size: 0.65rem; }

/* ═══════════════════════════════════════════════
   SERVICE CARDS GRID
   ═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: rgba(232,101,10,0.35);
  background: #FFFBF7;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,0.25);
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.1rem; color: var(--t1); }
.service-card p { font-size: 0.875rem; color: var(--t3); flex: 1; }
.service-card .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  border-color: rgba(232,101,10,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap {
  position: relative;
  height: 200px;
  background: var(--bg-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.product-img-placeholder {
  width: 80px;
  height: 80px;
  opacity: 0.2;
}
.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.product-name { font-size: 0.95rem; font-weight: 600; color: var(--t1); line-height: 1.4; }
.product-sku { font-size: 0.72rem; color: var(--t4); font-family: var(--font-en); }
.product-desc { font-size: 0.82rem; color: var(--t3); flex: 1; line-height: 1.6; }
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-en);
}
.product-price .unit { font-size: 0.7rem; color: var(--t4); font-weight: 400; margin-left: 0.2rem; }
.product-card-footer {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════════ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--t4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--bg-3);
}
.cart-item-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.cart-item-sku { font-size: 0.72rem; color: var(--t4); font-family: var(--font-en); }
.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-l);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}
.cart-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  color: var(--t2);
  font-size: 0.9rem;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}
.cart-qty-btn:hover { background: var(--orange); color: #fff; }
.cart-qty-input {
  width: 48px;
  height: 32px;
  text-align: center;
  background: #fff;
  border: none;
  border-left: 1px solid var(--border-l);
  border-right: 1px solid var(--border-l);
  color: var(--t1);
  font-size: 0.875rem;
  font-weight: 600;
  outline: none;
}
.cart-remove { color: var(--t4); font-size: 0.9rem; transition: color 0.2s; }
.cart-remove:hover { color: var(--red); }
.cart-price { font-weight: 700; color: var(--t1); font-family: var(--font-en); }

/* Cart Summary */
.cart-summary {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.cart-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--t3);
  margin-bottom: 0.6rem;
}
.summary-row .val { color: var(--t1); font-weight: 500; font-family: var(--font-en); }
.summary-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--t1);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.summary-total .val {
  font-size: 1.4rem;
  color: var(--orange);
  font-family: var(--font-en);
}
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--t4);
}
.cart-empty i { font-size: 3rem; margin-bottom: 1rem; display: block; opacity: 0.4; }
.cart-empty h3 { color: var(--t3); margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════ */
.checkout-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem var(--gap) 5rem;
}

/* Step indicator */
.checkout-steps {
  display: flex;
  align-items: center;
  margin: 1.5rem 0 3rem;
  padding: 0;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--t4);
}
.step-num {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.checkout-step.done { color: var(--orange); }
.checkout-step.done .step-num {
  background: rgba(249,115,22,0.15);
  border-color: var(--orange);
  color: var(--orange);
}
.checkout-step.active { color: var(--t1); font-weight: 600; }
.checkout-step.active .step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.step-sep { flex: 1; height: 1px; background: var(--border); max-width: 80px; margin: 0 0.75rem; }

/* Checkout Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

/* Checkout form sections */
.checkout-section { margin-bottom: 2.25rem; }
.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.checkout-section-title i { color: var(--orange); font-size: 0.9rem; }

/* Form elements */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--t4);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.form-group label .req { color: var(--orange); margin-left: 2px; }
.form-control {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border-l);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  color: var(--t1);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,10,0.10); }
.form-control::placeholder { color: var(--t4); }
select.form-control { cursor: pointer; }
select.form-control option { background: #fff; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* Payment methods */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}
.pm-option {
  border: 1.5px solid var(--border-l);
  border-radius: var(--r-sm);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  position: relative;
}
.pm-option:hover, .pm-option.selected {
  border-color: var(--orange);
  background: var(--orange-glow);
}
.pm-option input[type="radio"] { position: absolute; opacity: 0; }
.pm-option i {
  font-size: 1.4rem;
  color: var(--orange);
  display: block;
  margin-bottom: 0.4rem;
}
.pm-option span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.04em;
  display: block;
}
.pm-option.selected span { color: var(--orange); }

/* Payment detail */
.pm-detail-box {
  background: var(--bg-3);
  border: 1px solid var(--border-l);
  border-left: 3px solid var(--orange);
  border-radius: var(--r-sm);
  padding: 1.25rem 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--t3);
  line-height: 1.75;
  display: none;
}
.pm-detail-box.active { display: block; }
.pm-detail-box strong { color: var(--t1); }

/* Policy box */
.policy-box {
  background: rgba(249,115,22,0.04);
  border: 1px solid rgba(249,115,22,0.2);
  border-left: 3px solid var(--orange);
  border-radius: var(--r-sm);
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}
.policy-box h4 {
  font-size: 0.95rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.policy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.policy-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}
.policy-check label {
  font-size: 0.82rem;
  color: var(--t3);
  line-height: 1.65;
  cursor: pointer;
}
.policy-check label a { color: var(--orange); text-decoration: underline; text-decoration-color: rgba(249,115,22,0.4); }

/* Place Order button */
.btn-place-order {
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.btn-place-order:hover:not(:disabled) {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.4);
}
.btn-place-order:disabled { opacity: 0.35; cursor: not-allowed; }

/* Order Summary (right panel) */
.order-summary {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.os-title {
  font-size: 1.05rem;
  font-weight: 600;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.os-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  align-items: flex-start;
}
.os-item-img {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  object-fit: cover;
  flex-shrink: 0;
}
.os-item-name { font-size: 0.82rem; color: var(--t1); line-height: 1.4; }
.os-item-qty { font-size: 0.7rem; color: var(--t4); margin-top: 0.15rem; }
.os-item-price { font-size: 0.85rem; color: var(--orange); font-family: var(--font-en); font-weight: 700; white-space: nowrap; }

.os-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.os-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--t3);
  margin-bottom: 0.4rem;
}
.os-row .val { color: var(--t1); font-family: var(--font-en); }
.os-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--t1);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.os-row.total .val { font-size: 1.25rem; color: var(--orange); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--t4);
}
.trust-badge i { color: var(--orange); }

/* ═══════════════════════════════════════════════
   ORDER SUCCESS PAGE
   ═══════════════════════════════════════════════ */
.success-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem var(--gap);
  text-align: center;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 2px solid var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green-lt);
  margin: 0 auto 1.5rem;
}
.order-ref {
  background: var(--bg-2);
  border: 1px solid var(--border-l);
  border-radius: var(--r-sm);
  padding: 0.6rem 1.25rem;
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0.75rem 0;
}
.payment-instructions {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  text-align: left;
  margin: 2rem 0;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: #0F172A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 0;
  color: #CBD5E1;
}
.footer .footer-tagline { color: #64748B; }
.footer .footer-contact-item { color: #94A3B8; }
.footer .footer-col-title { color: #64748B; }
.footer .footer-link { color: #94A3B8; }
.footer .footer-link:hover { color: var(--orange); }
.footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); color: #475569; }
.footer .nav-logo__th { color: #F1F5F9; }
.footer .nav-logo__en { color: #64748B; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.875rem; color: var(--t4); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-contacts { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--t3);
  line-height: 1.5;
}
.footer-contact-item i { color: var(--orange); margin-top: 0.15rem; font-size: 0.78rem; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.78rem; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t4);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.875rem;
  color: var(--t3);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--t4);
}

/* ═══════════════════════════════════════════════
   MISC COMPONENTS
   ═══════════════════════════════════════════════ */

/* Alert / Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  box-shadow: var(--shadow-lg);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--t1);
  box-shadow: var(--shadow-md);
  transform: translateX(calc(100% + 2rem));
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 9999;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast i { color: var(--green); flex-shrink: 0; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-en);
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--t3); margin-top: 0.4rem; }

/* Why Us section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.why-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--t3); line-height: 1.7; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #FFF7F0 0%, #FEF3E2 100%);
  border: 1px solid rgba(232,101,10,0.18);
  border-radius: var(--r);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(249,115,22,0.08), transparent);
}
.cta-section .container { position: relative; }
.cta-section h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 0.75rem; }
.cta-section p { color: var(--t3); margin-bottom: 2rem; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════
   PROCESSING OVERLAY
   ═══════════════════════════════════════════════ */
#processing-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
#processing-overlay.active { display: flex; }
.processing-box {
  background: var(--bg-2);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--r);
  padding: 3rem 4rem;
  text-align: center;
  max-width: 360px;
}
.processing-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-l);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; order: -1; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--bg-0);
    padding: 1.5rem;
    gap: 0.5rem;
    z-index: 999;
    overflow-y: auto;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--orange);
    border-radius: 0;
    background: transparent;
    padding-left: 0.5rem;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .services-grid, .products-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 2.5rem 1.5rem; }
  .checkout-page { padding-top: 2rem; }
  .cart-table thead { display: none; }
  .cart-table td { display: block; padding: 0.6rem 0.75rem; }
  .cart-table tr { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 1rem; display: block; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .checkout-steps .step-sep { max-width: 30px; }
}

/* ═══════════════════════════════════════════════
   NAVBAR — Extended selectors for new HTML
   ═══════════════════════════════════════════════ */
.nav-container {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), #FCD34D);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav-logo__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-logo__text { line-height: 1.2; }
.nav-logo__th { font-size: 1.05rem; font-weight: 800; color: #0F172A; display: block; }
.nav-logo__en { font-size: 0.62rem; color: #475569; font-family: var(--font-en); letter-spacing: 0.08em; display: block; font-weight: 600; }

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  border: 1.5px solid var(--border-l);
  color: var(--t3);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-1);
  padding: 0 3px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t2);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* Dropdown nav (BEM) */
.nav-item--dropdown { position: relative; }
.nav-item--dropdown > .nav-link { cursor: pointer; }
.nav-item--dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background: var(--bg-2);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  z-index: 100;
  padding: 0.4rem 0;
}
.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--t2);
  transition: all 0.15s;
  border-radius: 6px;
  margin: 0.15rem 0.3rem;
}
.dropdown-item i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--orange);
}
.dropdown-item div { display: flex; flex-direction: column; gap: 0.1rem; }
.dropdown-item strong { font-size: 0.875rem; color: var(--t1); font-weight: 600; }
.dropdown-item span { font-size: 0.72rem; color: var(--t3); }
.dropdown-item:hover { background: var(--orange-glow); color: var(--orange); }

/* Scrolled navbar */
.navbar.scrolled {
  background: rgba(6, 13, 24, 0.98);
  box-shadow: var(--shadow-md);
}
.navbar.scrolled .nav-link {
  color: #E2E8F0;
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}
.navbar.scrolled .nav-link.active {
  color: #FDBA74;
}
.navbar.scrolled .nav-brand-th,
.navbar.scrolled .nav-logo__th {
  color: #F1F5F9;
}
.navbar.scrolled .nav-brand-en,
.navbar.scrolled .nav-logo__en {
  color: #94A3B8;
}
.navbar.scrolled .nav-phone a,
.navbar.scrolled .nav-phone span {
  color: #E2E8F0;
}
.navbar.scrolled .nav-phone i {
  color: #FDBA74;
}
.navbar.scrolled .dropdown-menu {
  background: rgba(10, 18, 32, 0.98);
  border-color: rgba(255,255,255,0.08);
}
.navbar.scrolled .dropdown-menu .nav-link {
  color: #CBD5E1;
}
.navbar.scrolled .dropdown-menu .nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* d-none-sm */
@media (max-width: 768px) {
  .d-none-sm { display: none !important; }
}

/* ═══════════════════════════════════════════════
   HERO — Extended (Full-bleed, no white borders)
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
}
/* Inner container holds the actual content centered */
.hero > .hero-content {
  flex: 1;
  min-width: 280px;
  max-width: 700px;
  padding: 7rem var(--gap) 5rem;
  position: relative;
  z-index: 2;
}
.hero > .hero-visual {
  flex-shrink: 0;
  width: 400px;
  position: relative;
  z-index: 2;
  margin-right: var(--gap);
}
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3rem;
    padding-left: max(var(--gap), calc((100vw - var(--max-w)) / 2));
    padding-right: max(var(--gap), calc((100vw - var(--max-w)) / 2));
  }
  .hero > .hero-content { padding-left: 0; padding-right: 0; }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
  top: -100px; right: 10%;
}
.hero-glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%);
  bottom: 0; left: 5%;
}
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat__num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-en);
  line-height: 1;
}
.hero-stat__label { font-size: 0.75rem; color: var(--t4); margin-top: 0.2rem; }
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-l);
  align-self: center;
}

/* Hero floating visual */
.hero-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t1);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(4px);
  animation: float 4s ease-in-out infinite;
}
.hero-card i { font-size: 1.25rem; color: var(--orange); }
.hero-card--1 { top: 10%; left: 5%; animation-delay: 0s; }
.hero-card--2 { top: 10%; right: 5%; animation-delay: 1s; }
.hero-card--3 { bottom: 20%; left: 5%; animation-delay: 2s; }
.hero-card--4 { bottom: 20%; right: 5%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Center diagram */
.hero-visual::before {
  content: '';
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  border: 1px solid rgba(249,115,22,0.15);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

/* ═══════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  overflow: hidden;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}
.trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--t4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1rem;
  flex-shrink: 0;
}
.trust-marquee {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trust-marquee__track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 0.8rem;
  color: var(--t3);
  font-weight: 500;
}
.trust-marquee__track .sep { color: var(--orange); opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   SECTION HELPERS
   ═══════════════════════════════════════════════ */
.section--alt { background: var(--bg-0); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-glow);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--t3);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
}
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.text-orange { color: var(--orange); }

/* ═══════════════════════════════════════════════
   SERVICE CARD — Extended (BEM)
   ═══════════════════════════════════════════════ */
.services-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}
.service-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--t1);
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--t3);
  line-height: 1.65;
  flex: 1;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
}
.service-card__list li {
  font-size: 0.8rem;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card__list li i { color: var(--orange); font-size: 0.65rem; }
.service-card__link {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
  margin-top: auto;
}
.service-card:hover .service-card__link { gap: 0.6rem; }
.service-card--wide { grid-column: span 2; }
@media (max-width: 768px) {
  .service-card--wide { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════
   PRODUCT CARD — Extended (BEM)
   ═══════════════════════════════════════════════ */
.product-card { position: relative; }
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.product-card__badge--new { background: var(--green); }
.product-card__img-wrap {
  position: relative;
  height: 200px;
  background:
    linear-gradient(135deg, rgba(232,101,10,0.06) 0%, rgba(37,99,235,0.04) 60%, rgba(15,23,42,0.04) 100%),
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(255,255,255,0.6) 0%, transparent 70%),
    var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.product-card__img-placeholder {
  font-size: 3.2rem;
  color: var(--orange);
  opacity: 0.55;
  filter: drop-shadow(0 6px 12px rgba(232,101,10,0.18));
  position: relative;
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}
.product-card__img-placeholder::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,10,0.12) 0%, transparent 70%);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.product-card__cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card__name { font-size: 0.9rem; font-weight: 600; color: var(--t1); line-height: 1.4; }
.product-card__desc { font-size: 0.8rem; color: var(--t3); line-height: 1.6; flex: 1; }
.product-card__footer {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-thb {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-en);
}
.price-unit { font-size: 0.7rem; color: var(--t4); margin-left: 0.15rem; }

/* ═══════════════════════════════════════════════
   WHY US — Extended 2-col layout
   ═══════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-content { }
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.why-feature strong { display: block; font-size: 0.95rem; color: var(--t1); margin-bottom: 0.2rem; }
.why-feature p { font-size: 0.85rem; color: var(--t3); line-height: 1.6; margin: 0; }

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.25s;
}
.stat-card:hover {
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-3px);
}
.stat-card i { font-size: 1.5rem; color: var(--orange); margin-bottom: 0.75rem; display: block; opacity: 0.8; }
.stat-card__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-en);
  line-height: 1;
  display: block;
}
.stat-card__label { font-size: 0.78rem; color: var(--t3); margin-top: 0.35rem; display: block; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ═══════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════ */
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.process-step__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(249,115,22,0.12);
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: -0.5rem;
  position: relative;
  z-index: 0;
}
.process-step__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1.5px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
}
.process-step:hover .process-step__icon {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.process-step h4 { font-size: 0.9rem; font-weight: 600; color: var(--t1); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.8rem; color: var(--t3); line-height: 1.65; }
.process-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  margin-top: 2.5rem;
  color: var(--t4);
  font-size: 0.8rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .process-step__arrow { display: none; }
  .process-step { min-width: 140px; }
}

/* ═══════════════════════════════════════════════
   CTA SECTION — Full-width
   ═══════════════════════════════════════════════ */
.cta-section {
  padding: 5rem 0;
}
.cta-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.cta-content p { color: var(--t3); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   FOOTER — Extended
   ═══════════════════════════════════════════════ */
.footer-about {
  font-size: 0.85rem;
  color: var(--t4);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.footer-reg {
  font-size: 0.72rem;
  color: var(--t4);
  font-family: var(--font-en);
}
.footer-col__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t4);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.footer-links a i { color: var(--orange); width: 14px; font-size: 0.8rem; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item a { color: var(--t3); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════
   CART TOAST (from cart.js)
   ═══════════════════════════════════════════════ */
.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border-l);
  border-left: 3px solid var(--green);
  border-radius: var(--r-sm);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--t1);
  box-shadow: var(--shadow-md);
  transform: translateX(calc(100% + 2rem));
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 9999;
  max-width: 340px;
}
.cart-toast--show { transform: translateX(0); }
.cart-toast__icon {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.cart-toast__msg { line-height: 1.4; }

/* ═══════════════════════════════════════════════
   CART PAGE — Extended (BEM)
   ═══════════════════════════════════════════════ */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-l);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--bg-3);
  color: var(--t2);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--orange); color: #fff; }
.qty-input {
  width: 48px;
  height: 32px;
  text-align: center;
  background: var(--bg-2);
  border: none;
  border-left: 1px solid var(--border-l);
  border-right: 1px solid var(--border-l);
  color: var(--t1);
  font-size: 0.875rem;
  font-weight: 600;
  outline: none;
}
.btn-remove {
  background: none;
  border: none;
  color: var(--t4);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.4rem;
  transition: color 0.2s;
}
.btn-remove:hover { color: var(--red); }
.cart-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-product__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  flex-shrink: 0;
}
.cart-product__name { font-size: 0.875rem; font-weight: 600; color: var(--t1); margin-bottom: 0.15rem; }
.cart-product__cat { font-size: 0.72rem; color: var(--t4); }

/* Order item (checkout summary) */
.order-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.875rem;
}
.order-item__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  flex-shrink: 0;
}
.order-item__info { flex: 1; }
.order-item__name { font-size: 0.82rem; color: var(--t1); line-height: 1.4; }
.order-item__qty { font-size: 0.7rem; color: var(--t4); margin-top: 0.1rem; }
.order-item__price { font-size: 0.875rem; color: var(--orange); font-weight: 700; font-family: var(--font-en); white-space: nowrap; }

/* btn--added state */
.btn--added {
  background: var(--green) !important;
  box-shadow: 0 4px 16px rgba(22,163,74,0.3) !important;
}

/* ═══════════════════════════════════════════════
   FADE-IN ANIMATION (scroll reveal)
   ═══════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   PAGE HERO — Shared inner page header
   ═══════════════════════════════════════════════ */
.page-hero {
  background: var(--bg-0);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(249,115,22,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p { color: var(--t3); font-size: 1.05rem; max-width: 560px; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; color: var(--t4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.9rem; color: var(--t1); font-weight: 500; }
.contact-form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
}
@media (max-width: 7
/* ═══════════════════════════════════════════════
   FINAL FIXES — Mobile/Tablet menu, Policy strip, DBD badge
   ═══════════════════════════════════════════════ */

/* Tablet & Mobile — show hamburger, hide nav-menu */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger { display: flex !important; }
  .nav-actions .btn-primary.btn-sm { display: none; } /* hide quote CTA */
  .nav-actions .lang-toggle { padding: 0.4rem 0.65rem; font-size: 0.75rem; }

  /* Mobile menu opened */
  .nav-menu.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-0);
    padding: 1.5rem;
    gap: 0.5rem;
    z-index: 999;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .nav-menu.open .nav-item { width: 100%; }
  .nav-menu.open .nav-link {
    display: block;
    width: 100%;
    padding: 0.85rem 0.75rem;
    border-radius: 8px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }
  .nav-menu.open .nav-link:hover { background: var(--bg-3); }
  .nav-menu.open .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-3);
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    margin-top: 0.25rem;
  }
  .nav-item--dropdown.active .dropdown-menu { display: block; }
  .nav-overlay.open {
    display: block;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }
}

/* ── Footer policy strip — compact + wrap-friendly ── */
.footer-policy-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
  padding: 0.85rem 0.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--t4);
}
.footer-policy-strip a {
  color: var(--t4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
  transition: color 0.15s;
  white-space: nowrap;
  font-size: 0.78rem;
}
.footer-policy-strip a:hover { color: var(--orange); }
.footer-policy-strip a i { font-size: 0.72rem; opacity: 0.6; }
@media (max-width: 600px) {
  .footer-policy-strip { font-size: 0.72rem; gap: 0.2rem 0.7rem; padding: 0.7rem 0.4rem; }
  .footer-policy-strip a { padding: 0.1rem 0.25rem; font-size: 0.72rem; }
}

/* DBD Verified badge in footer */
.dbd-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.dbd-badge {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(180deg, #6B2D8E 0%, #5A2478 100%);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(107,45,142,0.25);
  overflow: hidden;
  height: 60px;
  border: 1px solid rgba(0,0,0,0.1);
}
.dbd-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107,45,142,0.35); }
.dbd-badge__mark {
  position: relative;
  background: linear-gradient(180deg, #6B2D8E 0%, #5A2478 100%);
  color: #fff;
  font-family: var(--font-en), 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  padding: 0 0.85rem;
  display: flex;
  align-items: center;
  line-height: 1;
}
.dbd-badge__mark::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 55%;
  height: 6px;
  background: linear-gradient(90deg, transparent 0%, #F5A623 30%, #F5A623 70%, transparent 100%);
  transform: rotate(-15deg);
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
}
.dbd-badge__tier {
  background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 50%, #909090 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0.85rem;
  line-height: 1.05;
  font-family: var(--font-en), 'Inter', sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.dbd-badge__tier strong {
  font-style: italic;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.dbd-badge__tier span {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  margin-top: 1px;
}
@media (max-width: 600px) {
  .dbd-badge { height: 52px; }
  .dbd-badge__mark { font-size: 1.25rem; padding: 0 0.7rem; }
  .dbd-badge__tier { padding: 0 0.7rem; }
  .dbd-badge__tier strong { font-size: 0.7rem; }
  .dbd-badge__tier span { font-size: 0.62rem; }
}
  .dbd-badge__text strong { font-size: 0.72rem; }
  .dbd-badge__text span { font-size: 0.62rem; }
}


/* ── MOBILE MENU FIX — Force hamburger to work at ≤1024px ── */
@media (max-width: 1024px) {
  /* Hide desktop menu */
  .nav-menu:not(.open) { display: none !important; }

  /* Show hamburger button */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--t1);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Hide quote CTA on mobile */
  .nav-actions a.btn-primary { display: none !important; }
  .d-none-sm { display: none !important; }

  /* Mobile slide-in menu */
  .nav-menu.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: var(--nav-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    background: #fff !important;
    padding: 1.5rem 1rem !important;
    gap: 0.4rem !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    border-top: 1px solid var(--border) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
    align-items: stretch !important;
    list-style: none !important;
  }
  .nav-menu.open .nav-item {
    width: 100% !important;
    list-style: none !important;
  }
  .nav-menu.open .nav-link {
    display: block !important;
    width: 100% !important;
    padding: 0.85rem 0.85rem !important;
    border-radius: 8px !important;
    border-bottom: 1px solid var(--border) !important;
    font-size: 0.95rem !important;
    color: var(--t1) !important;
    background: transparent !important;
  }
  .nav-menu.open .nav-link:hover { background: var(--bg-3) !important; }
  .nav-menu.open .dropdown-menu {
    position: static !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: var(--bg-3) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 0.5rem !important;
    margin-top: 0.25rem !important;
    width: 100% !important;
  }
  .nav-menu.open .nav-item--dropdown.active .dropdown-menu {
    display: block !important;
  }
  .nav-menu.open .dropdown-item {
    display: flex !important;
    padding: 0.6rem 0.5rem !important;
    border-radius: 4px !important;
    color: var(--t2) !important;
    text-decoration: none !important;
  }
  .nav-overlay.open {
    display: block !important;
    position: fixed !important;
    top: var(--nav-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.4) !important;
    z-index: 998 !important;
  }
}

/* Always hide hamburger on desktop */
@media (min-width: 1025px) {
  .hamburger { display: none !important; }
  .nav-menu { display: flex !important; }
}


/* Final footer typography unification - all 0.78rem like copyright */
.footer-contacts,
.footer-contacts *:not(i),
.footer-contact-item,
.footer-contact-item *:not(i),
.footer-policy-strip,
.footer-policy-strip a,
.footer-policy-strip a *:not(i),
.footer-bottom,
.footer-bottom * {
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
}
.footer-policy-strip { padding: 0.85rem 0.5rem; gap: 0.3rem 1rem; }
.footer-policy-strip a { padding: 0.15rem 0.4rem; }
.footer-policy-strip a:hover { color: var(--orange) !important; }
@media (max-width: 600px) {
  .footer-contacts,
  .footer-contacts *:not(i),
  .footer-contact-item,
  .footer-contact-item *:not(i),
  .footer-policy-strip,
  .footer-policy-strip a,
  .footer-policy-strip a *:not(i),
  .footer-bottom,
  .footer-bottom * { font-size: 0.74rem !important; }
}

/* DBD badge - image version */
.dbd-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.dbd-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  height: auto !important;
  padding: 0 !important;
  overflow: visible !important;
}
.dbd-badge:hover { transform: translateY(-2px); opacity: 0.92; box-shadow: none !important; }
.dbd-badge img {
  height: 56px;
  width: auto;
  display: block;
  border: none;
}
@media (max-width: 600px) {
  .dbd-badge img { height: 48px; }
}



/* Footer dark theme - ALL TEXT WHITE */
.footer .footer-col__title,
.footer .footer-title,
.footer h4 { color: #FFFFFF !important; font-weight: 700; }

.footer .footer-links a,
.footer .footer-links a *,
.footer .footer-links li,
.footer .footer-links li *,
.footer .footer-contacts a,
.footer .footer-contact-item,
.footer .footer-contact-item *:not(i),
.footer .footer-contact-item a,
.footer .footer-contact-item span {
  color: #FFFFFF !important;
  transition: color 0.15s;
  text-decoration: none;
}
.footer .footer-links a:hover,
.footer .footer-contact-item a:hover,
.footer .footer-contacts a:hover,
.footer .footer-links li:hover *,
.footer .footer-links li:hover {
  color: #FDBA74 !important;
}
.footer .footer-links a i,
.footer .footer-contact-item i { color: #FDBA74 !important; }
.footer .footer-about { color: #CBD5E1 !important; }
.footer .footer-reg span,
.footer .footer-reg { color: #94A3B8 !important; }

/* Policy strip */
.footer .footer-policy-strip { border-top-color: rgba(255,255,255,0.08) !important; }
.footer .footer-policy-strip,
.footer .footer-policy-strip a { color: #CBD5E1 !important; }
.footer .footer-policy-strip a:hover { color: #FDBA74 !important; }

/* Footer bottom */
.footer .footer-bottom,
.footer .footer-bottom span { color: #94A3B8 !important; }

/* Logo text on dark footer */
.footer .nav-logo__th { color: #FFFFFF !important; }
.footer .nav-logo__en { color: #94A3B8 !important; }


/* FINAL OVERRIDES - rev3 (absolute px, strong spacing) */

/* Policy strip — small, well-spaced, separated bullets */
.footer .footer-policy-strip,
.footer-policy-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px 24px !important;
  padding: 14px 12px !important;
  margin-top: 16px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  font-size: 9px !important;
  line-height: 1.5 !important;
}
.footer .footer-policy-strip a,
.footer-policy-strip a {
  font-size: 9px !important;
  color: #94A3B8 !important;
  text-decoration: none !important;
  padding: 2px 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  white-space: nowrap !important;
  border-radius: 3px !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  text-transform: none !important;
}
.footer .footer-policy-strip a:hover,
.footer-policy-strip a:hover {
  color: #FDBA74 !important;
  background: transparent !important;
}
.footer .footer-policy-strip a i,
.footer-policy-strip a i {
  font-size: 8.5px !important;
  opacity: 0.55 !important;
  color: #64748B !important;
}
@media (max-width: 600px) {
  .footer .footer-policy-strip,
  .footer-policy-strip {
    font-size: 8.5px !important;
    gap: 6px 18px !important;
    padding: 12px 8px !important;
  }
  .footer .footer-policy-strip a,
  .footer-policy-strip a {
    font-size: 8.5px !important;
    padding: 2px 3px !important;
  }
}

/* Mobile menu — force hamburger visible at ≤1024px */
@media (max-width: 1024px) {
  body .navbar .hamburger,
  .navbar .nav-actions .hamburger,
  .hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    z-index: 1001 !important;
  }
  body .navbar .hamburger span,
  .hamburger span {
    display: block !important;
    width: 24px !important;
    height: 2.5px !important;
    background: #1F2937 !important;
    border-radius: 2px !important;
  }
  body .navbar .nav-menu:not(.open) {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .hamburger { display: none !important; }
}


/* ── FINAL OVERRIDES rev4 — dropdown hover white + logo safe ── */

/* Logo always visible if file exists */
.navbar .nav-logo__img,
.footer .nav-logo__img {
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
  border-radius: 50%;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}
.footer .nav-logo__img { width: 40px !important; height: 40px !important; }

/* Dropdown menu — hover state with WHITE text on solid orange */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu li:hover .dropdown-item,
ul.dropdown-menu li a.dropdown-item:hover {
  background: var(--orange) !important;
  color: #FFFFFF !important;
}
.dropdown-menu .dropdown-item:hover *,
.dropdown-menu .dropdown-item:hover strong,
.dropdown-menu .dropdown-item:hover span,
.dropdown-menu .dropdown-item:hover i,
.dropdown-menu .dropdown-item:hover div,
.dropdown-menu li:hover .dropdown-item *,
ul.dropdown-menu li a.dropdown-item:hover * {
  color: #FFFFFF !important;
}


/* FINAL OVERRIDES rev5 - policy strip smallest */
.footer .footer-policy-strip,
.footer-policy-strip,
.footer .footer-policy-strip *,
.footer-policy-strip * {
  font-size: 9px !important;
}
.footer .footer-policy-strip a,
.footer-policy-strip a {
  font-size: 9px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  padding: 2px 4px !important;
  gap: 4px !important;
}
.footer .footer-policy-strip a i,
.footer-policy-strip a i {
  font-size: 8px !important;
  opacity: 0.55 !important;
}
.footer .footer-policy-strip,
.footer-policy-strip {
  gap: 6px 18px !important;
  padding: 12px 12px !important;
  line-height: 1.4 !important;
}
@media (max-width: 600px) {
  .footer .footer-policy-strip,
  .footer-policy-strip,
  .footer .footer-policy-strip *,
  .footer-policy-strip *,
  .footer .footer-policy-strip a,
  .footer-policy-strip a { font-size: 8.5px !important; }
  .footer .footer-policy-strip a i,
  .footer-policy-strip a i { font-size: 7.5px !important; }
}


/* FINAL OVERRIDES rev6 - DBD badge image proper sizing */
.dbd-badge-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
  padding: 1rem 1rem !important;
  margin-top: 0.25rem !important;
  flex-wrap: wrap !important;
}
.dbd-badge {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  height: auto !important;
  padding: 0 !important;
  overflow: visible !important;
  transition: transform 0.2s, opacity 0.2s !important;
}
.dbd-badge:hover {
  transform: translateY(-2px) !important;
  opacity: 0.92 !important;
  box-shadow: none !important;
}
.dbd-badge img {
  height: 64px !important;
  width: auto !important;
  max-width: 220px !important;
  display: block !important;
  border: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
@media (max-width: 768px) {
  .dbd-badge img { height: 52px !important; max-width: 180px !important; }
}
@media (max-width: 480px) {
  .dbd-badge img { height: 44px !important; max-width: 150px !important; }
  .dbd-badge-wrap { padding: 0.75rem !important; gap: 0.5rem !important; }
}


/* ULTIMATE DBD logo size lock - rev7 */
html body footer .dbd-badge-wrap a.dbd-badge img,
html body .dbd-badge-wrap img,
.dbd-badge-wrap img,
.dbd-badge img,
img[alt="DBD Verified"] {
  height: 60px !important;
  max-height: 60px !important;
  width: auto !important;
  max-width: 200px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
  object-fit: contain !important;
}
@media (max-width: 768px) {
  html body footer .dbd-badge-wrap a.dbd-badge img,
  html body .dbd-badge-wrap img,
  .dbd-badge-wrap img,
  .dbd-badge img,
  img[alt="DBD Verified"] {
    height: 48px !important;
    max-height: 48px !important;
    max-width: 160px !important;
  }
}
@media (max-width: 480px) {
  html body footer .dbd-badge-wrap a.dbd-badge img,
  html body .dbd-badge-wrap img,
  .dbd-badge-wrap img,
  .dbd-badge img,
  img[alt="DBD Verified"] {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 140px !important;
  }
}


/* FINAL OVERRIDES rev8 - policy strip wider spacing */
.footer .footer-policy-strip,
.footer-policy-strip {
  gap: 10px 32px !important;
  padding: 16px 16px !important;
}
.footer .footer-policy-strip a,
.footer-policy-strip a {
  padding: 4px 6px !important;
  gap: 6px !important;
}
@media (max-width: 768px) {
  .footer .footer-policy-strip,
  .footer-policy-strip {
    gap: 8px 22px !important;
    padding: 14px 12px !important;
  }
}
@media (max-width: 480px) {
  .footer .footer-policy-strip,
  .footer-policy-strip {
    gap: 6px 14px !important;
    padding: 12px 10px !important;
  }
}


/* FINAL OVERRIDES rev9 - Policy as column, hide old strip */

/* Hide old horizontal policy strip */
.footer-policy-strip { display: none !important; }

/* Footer grid: 5 columns now */
.footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr !important;
  gap: 2rem !important;
}
@media (max-width: 1024px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 2rem 1.5rem !important;
  }
  .footer .footer-grid > .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer .footer-grid > .footer-brand { grid-column: 1 / -1; }
}

/* Policy column links — same style as other footer columns (white text) */
.footer .footer-col__title.footer-title,
.footer .footer-col h4 { color: #FFFFFF !important; }
.footer .footer-links a {
  color: #FFFFFF !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  padding: 3px 0 !important;
  transition: color 0.15s !important;
}
.footer .footer-links a:hover { color: #FDBA74 !important; }
.footer .footer-links a i {
  color: #FDBA74 !important;
  font-size: 0.78rem !important;
  width: 16px;
  text-align: center;
}
.footer .footer-links li { margin-bottom: 4px; }


/* FINAL OVERRIDES rev10 - footer all white text + 5-col layout */
.footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1.1fr 1.1fr 1.1fr 1.3fr !important;
  gap: 2rem !important;
}
@media (max-width: 1200px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  .footer .footer-grid > .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .footer .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* All footer text white */
.footer,
.footer * {
  color: #FFFFFF !important;
}
.footer .footer-col__title,
.footer .footer-title,
.footer h4 {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.02em !important;
}
.footer .footer-links a,
.footer .footer-contact-item,
.footer .footer-contact-item a,
.footer .footer-contact-item span,
.footer .footer-about,
.footer .footer-reg,
.footer .footer-reg span,
.footer .nav-logo__th,
.footer .nav-logo__en,
.footer .footer-bottom,
.footer .footer-bottom span {
  color: #FFFFFF !important;
}
.footer .footer-links a:hover,
.footer .footer-contact-item a:hover { color: #FDBA74 !important; }
.footer .footer-links a i,
.footer .footer-contact-item i { color: #FDBA74 !important; }
.footer .nav-logo__en { color: #CBD5E1 !important; font-size: 0.65rem !important; }
.footer .footer-about { color: #E2E8F0 !important; line-height: 1.7; }
.footer .footer-reg, .footer .footer-reg span { color: #94A3B8 !important; }
.footer .footer-bottom, .footer .footer-bottom span { color: #94A3B8 !important; font-size: 0.8rem !important; }

/* Hide footer-policy-strip definitively */
.footer-policy-strip,
.footer .footer-policy-strip { display: none !important; visibility: hidden !important; height: 0 !important; }


/* FINAL OVERRIDES rev11 - ensure logo always visible */
.navbar .nav-logo,
.footer .footer-logo,
.footer .footer-brand .footer-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.navbar .nav-logo__img,
.footer .nav-logo__img,
.footer .footer-logo img,
.footer-logo img,
img.nav-logo__img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  background: transparent !important;
}
.footer .nav-logo__img,
.footer .footer-logo img { width: 44px !important; height: 44px !important; }


/* FINAL OVERRIDES rev12 - footer 5-col aligned, brand wraps nicely */
.footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr !important;
  gap: 2.5rem !important;
  align-items: start !important;
  margin-bottom: 2.5rem !important;
}

/* Brand column wraps nicely */
.footer .footer-brand {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
  align-items: flex-start !important;
}
.footer .footer-brand .footer-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin-bottom: 0.25rem !important;
}
.footer .footer-about {
  font-size: 0.82rem !important;
  line-height: 1.7 !important;
  color: #E2E8F0 !important;
  word-break: break-word !important;
  margin: 0 !important;
  max-width: 100% !important;
}
.footer .footer-reg {
  font-size: 0.78rem !important;
  color: #94A3B8 !important;
  margin-top: 0.5rem !important;
}
.footer .footer-reg span { color: #94A3B8 !important; }

/* All other columns top-aligned at same row */
.footer .footer-col {
  display: flex !important;
  flex-direction: column !important;
  align-self: start !important;
}
.footer .footer-col__title,
.footer .footer-title {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.02em !important;
}

/* Contact column matches other columns */
.footer .footer-col .footer-contacts,
.footer .footer-col .footer-contact {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.55rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer .footer-contact-item,
.footer .footer-col .footer-contact li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
  font-size: 0.82rem !important;
  line-height: 1.6 !important;
  color: #FFFFFF !important;
}
.footer .footer-contact-item i,
.footer .footer-col .footer-contact li i {
  color: #FDBA74 !important;
  font-size: 0.8rem !important;
  margin-top: 0.25rem !important;
  flex-shrink: 0 !important;
}
.footer .footer-contact-item a,
.footer .footer-col .footer-contact li a {
  color: #FFFFFF !important;
  text-decoration: none !important;
}
.footer .footer-contact-item a:hover { color: #FDBA74 !important; }

/* Responsive */
@media (max-width: 1100px) {
  .footer .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 2rem !important;
  }
  .footer .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.75rem !important;
  }
  .footer .footer-grid > .footer-brand { grid-column: 1 / -1; }
  .footer .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer .footer-grid { grid-template-columns: 1fr !important; }
}


/* ============================================================
   FOOTER REV 13 (2026-05-03) — DBD badge moved into ติดต่อ column
   ============================================================ */
.footer-dbd-inline { display: block !important; }
.footer-dbd-inline .dbd-badge { display: inline-block !important; }
.footer-dbd-inline img {
  height: 54px !important;
  max-height: 54px !important;
  max-width: 180px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}
.footer-policy-strip { display: none !important; }
.footer .dbd-badge-wrap:not(.footer-dbd-inline) { display: none !important; }

@media (max-width: 768px) {
  .footer-dbd-inline { text-align: center; }
  .footer-dbd-inline .dbd-badge { display: inline-block !important; margin: 0 auto !important; }
  .footer-dbd-inline img { margin: 0 auto !important; }
}


/* ============================================================
   FOOTER REV 14 (2026-05-03) — removed "เมนู" column, footer is now 4 cols
   ============================================================ */
.footer .footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr !important;
  gap: 2rem !important;
}
@media (max-width: 1100px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  .footer .footer-grid {
    grid-template-columns: 1fr !important;
  }
}
