    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :focus:not(:focus-visible) { outline: none; }

    :root {
      --bg: #fafaf8;
      --bg2: #f4f3f0;
      --surface: #ffffff;
      --surface2: #eeede8;
      --border: rgba(0,0,0,0.07);
      --border2: rgba(0,0,0,0.12);
      --text: #1a1a1a;
      --muted: #888880;
      --accent: #b8952a;
      --accent-light: #fdf4dc;
      --accent2: #c0392b;
      --black: #0a0a0a;
      --font-display: 'Inter', 'Sarabun', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-body: 'Inter', 'Sarabun', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', monospace;
      --radius: 16px;
      --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.09);
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 60px;
      background: rgba(250,250,248,0.92);
      backdrop-filter: blur(24px) saturate(1.8);
      border-bottom: 1px solid var(--border);
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
    .logo-plate {
      background: var(--black); color: #f5e6c0;
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 2px; padding: 5px 10px; border-radius: 5px;
    }
    .logo-text {
      font-family: var(--font-body); font-size: 17px; font-weight: 600;
      color: var(--black); letter-spacing: -0.5px;
    }
    .nav-links { display: flex; gap: 34px; list-style: none; }
    .nav-links a {
      color: var(--muted); text-decoration: none; font-size: 13.5px;
      font-weight: 400; letter-spacing: -0.2px; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .wish-panel-overlay {
      position: fixed; inset: 0; z-index: 299; background: rgba(0,0,0,0.3);
      opacity: 0; pointer-events: none; transition: opacity 0.2s;
    }
    .wish-panel-overlay.open { opacity: 1; pointer-events: all; }
    .wish-panel {
      position: fixed; right: 80px; z-index: 300;
      width: 340px; max-height: 70vh;
      background: var(--surface,#fff); border: 1px solid var(--border2,#e5e5e5);
      border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.14);
      display: flex; flex-direction: column;
      transform: translateX(8px) scale(0.97); opacity: 0;
      pointer-events: none; transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
    }
    .wish-panel.open { transform: translateX(0) scale(1); opacity: 1; pointer-events: all; }
    .wish-panel-head { padding: 16px 18px 12px; border-bottom: 1px solid var(--border,#e5e5e5); display: flex; align-items: center; justify-content: space-between; }
    .wish-panel-title { font-size: 14px; font-weight: 700; color: var(--black,#111); display: flex; align-items: center; gap: 7px; }
    .wish-panel-title svg { color: #ef4444; flex-shrink:0; }
    .wish-panel-close { background: none; border: none; cursor: pointer; color: var(--muted,#888); font-size: 18px; line-height: 1; padding: 2px 6px; border-radius: 6px; }
    .wish-panel-close:hover { background: var(--bg2,#f5f5f5); }
    .wish-panel-body { overflow-y: auto; padding: 12px; flex: 1; }
    .wish-panel-empty { text-align: center; padding: 32px 16px; color: var(--muted,#888); font-size: 13px; line-height:1.7; }
    .wish-panel-empty svg { display: block; margin: 0 auto 10px; opacity: 0.25; }
    .wish-panel-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 10px; cursor: pointer; transition: background 0.15s; }
    .wish-panel-item:hover { background: var(--bg2,#f5f5f5); }
    .wish-panel-item-plate { flex-shrink: 0; background: #fff; border: 1.5px solid #ccc; border-radius: 6px; padding: 4px 8px; font-family: var(--font-mono,monospace); font-size: 12px; font-weight: 700; color: #111; white-space: nowrap; }
    .wish-panel-item-plate.auction-plate { background: linear-gradient(135deg,#5868b8,#c8b8e8,#f8dcb0); border-color: #9898c8; color: #1a0060; }
    .wish-panel-item-info { flex: 1; min-width: 0; }
    .wish-panel-item-num { font-size: 13px; font-weight: 700; color: var(--black,#111); }
    .wish-panel-item-sub { font-size: 11px; color: var(--muted,#888); margin-top: 1px; }
    .wish-panel-item-level { flex-shrink: 0; font-size: 14px; }
    .wish-panel-item-remove { flex-shrink: 0; background: none; border: none; cursor: pointer; color: var(--muted,#888); font-size: 16px; opacity: 0.5; padding: 2px 4px; }
    .wish-panel-item-remove:hover { opacity: 1; color: #ef4444; }
    .wish-panel-foot { padding: 10px 12px; border-top: 1px solid var(--border,#e5e5e5); display: flex; gap: 8px; }
    .wish-panel-filter-btn { flex: 1; background: var(--black,#111); color: #fff; border: none; border-radius: 100px; padding: 9px; font-size: 12px; font-weight: 700; font-family: var(--font-body,sans-serif); cursor: pointer; transition: all 0.18s; }
    .wish-panel-filter-btn:hover { transform: translateY(-1px); opacity:0.85; }
    .wish-panel-filter-btn.active { background: #ef4444; }
    .wish-panel-clear-btn { background: transparent; color: var(--muted,#888); border: 1px solid var(--border2,#e5e5e5); border-radius: 100px; padding: 9px 14px; font-size: 12px; font-weight: 600; font-family: var(--font-body,sans-serif); cursor: pointer; transition: all 0.15s; }
    .wish-panel-clear-btn:hover { border-color: #ef4444; color: #ef4444; }
    .btn-ghost {
      background: transparent; border: 1px solid var(--border2);
      color: var(--text); padding: 7px 18px; border-radius: 100px;
      font-size: 13px; font-family: var(--font-body); cursor: pointer; transition: all 0.2s;
    }
    .btn-ghost:hover { background: var(--surface2); }
    .btn-primary {
      background: var(--black); color: #fff; border: none;
      padding: 8px 20px; border-radius: 100px; font-size: 13px;
      font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: all 0.2s;
    }
    .btn-primary:hover { background: var(--accent); color: var(--black); transform: translateY(-1px); }

    .wish-drop-trash-btn {
      width: 24px; height: 24px; border-radius: 6px;
      background: transparent; border: 1px solid transparent;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: #ccc; transition: all 0.15s; flex-shrink: 0; padding: 0;
    }
    .wish-drop-trash-btn:hover { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); color: #ef4444; }
    /* ── Login suggestion modal ── */
    .login-modal-overlay {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(10,10,10,0.55);
      backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .login-modal-overlay.open { opacity: 1; pointer-events: all; }
    .login-modal {
      background: #fff; border-radius: 20px;
      padding: 36px 32px 28px;
      max-width: 380px; width: calc(100% - 40px);
      box-shadow: 0 24px 64px rgba(0,0,0,0.18);
      transform: translateY(16px) scale(0.97);
      transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
      text-align: center;
    }
    .login-modal-overlay.open .login-modal { transform: translateY(0) scale(1); }
    .login-modal-icon {
      font-size: 40px; margin-bottom: 14px; display: block; line-height: 1;
    }
    .login-modal h3 {
      font-size: 18px; font-weight: 700; color: #0a0a0a;
      margin: 0 0 10px; letter-spacing: -0.3px;
    }
    .login-modal p {
      font-size: 14px; color: #666; line-height: 1.65;
      margin: 0 0 24px;
    }
    .login-modal-actions {
      display: flex; flex-direction: column; gap: 10px;
    }
    .login-modal-btn-primary {
      background: #0a0a0a; color: #fff; border: none;
      border-radius: 100px; padding: 13px 20px;
      font-size: 14px; font-weight: 700;
      font-family: var(--font-body, sans-serif);
      cursor: pointer; transition: all 0.2s;
    }
    .login-modal-btn-primary:hover { background: #b8952a; transform: translateY(-1px); }
    .login-modal-btn-ghost {
      background: transparent; color: #888;
      border: 1px solid #e5e5e5; border-radius: 100px;
      padding: 11px 20px; font-size: 13px; font-weight: 500;
      font-family: var(--font-body, sans-serif);
      cursor: pointer; transition: all 0.2s;
    }
    .login-modal-btn-ghost:hover { border-color: #ccc; color: #444; }

    /* HAMBURGER */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 8px; z-index: 201;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--black); border-radius: 2px;
      transition: all 0.3s ease;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* MOBILE MENU OVERLAY */
    .mobile-menu {
      display: none;
      position: fixed; inset: 0; z-index: 199;
      background: rgba(250,250,248,0.98);
      backdrop-filter: blur(24px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .mobile-menu.open {
      display: flex; opacity: 1; pointer-events: all;
    }
    .mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 24px; }
    .mobile-menu ul a {
      font-family: var(--font-display); font-size: 32px; font-weight: 300;
      color: var(--black); text-decoration: none; letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .mobile-menu ul a:hover { color: var(--accent); }
    .mobile-menu-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
    .mobile-menu-actions button { min-width: 200px; text-align: center; }

    /* HERO */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center;
      padding: 120px 24px 80px; position: relative; overflow: hidden;
      background: linear-gradient(180deg, #fafaf8 0%, #f4f3ee 100%);
    }
    .hero::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 30%, var(--border2) 70%, transparent);
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 100px; padding: 6px 18px; font-size: 12px;
      font-weight: 500; color: var(--muted); letter-spacing: 0.2px;
      margin-bottom: 40px; animation: fadeUp 0.6s ease both;
      box-shadow: var(--shadow-sm);
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5);
    }
    .hero h1 {
      font-family: var(--font-display); font-size: clamp(64px, 11vw, 148px);
      font-weight: 200; line-height: 0.90; letter-spacing: -4px;
      color: var(--black); animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero h1 em { font-style: normal; font-weight: 200; color: var(--accent); }
    .hero-sub {
      margin-top: 28px; font-size: 19px; color: var(--muted);
      max-width: 520px; font-weight: 300; line-height: 1.7; letter-spacing: -0.3px;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-cta {
      display: flex; gap: 12px; margin-top: 44px;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn-lg {
      padding: 14px 34px; border-radius: 100px; font-size: 14px;
      font-weight: 500; cursor: pointer; transition: all 0.25s;
      font-family: var(--font-body); letter-spacing: -0.1px;
    }
    .btn-dark { background: var(--black); color: #fff; border: none; }
    .btn-dark:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
    .btn-outline:hover { border-color: rgba(0,0,0,0.3); background: var(--surface); }

    /* PLATE SHOWCASE */
    .plate-showcase {
      display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
      margin-top: 72px; animation: fadeUp 0.7s 0.4s ease both;
    }
    .plate-card {
      cursor: pointer;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
      display: flex; flex-direction: column; align-items: center;
      width: 160px;
      position: relative;
    }
    .plate-card .mini-plate { width: 160px; }
    .plate-card:hover { transform: translateY(-8px) rotate(-1.5deg) scale(1.03); }
    .plate-card-bg {
      width: 160px; height: 100px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 8px;
    }

    /* ═══ THAI PLATE DESIGN ═══
       [Red: 🇹🇭 ENGLISH PROVINCE]
       [White: กข - 888  (Thai prefix – number, one line)]
       [Grey: กรุงเทพมหานคร (Thai province name)]
    ═══ */
    .plate {
      background: #fff;
      border: 2px solid #bbb;
      border-radius: 7px;
      width: 168px;
      overflow: hidden;
      box-shadow: 0 3px 0 #999, var(--shadow-md);
      display: flex; flex-direction: column; align-items: stretch;
      flex-shrink: 0;
    }
    .plate-header {
      background: #c8001a; padding: 4px 8px 3px;
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .plate-header-text {
      font-size: 8.5px; color: #fff; font-weight: 700; letter-spacing: 1.5px;
      font-family: 'Inter', -apple-system, sans-serif; text-transform: uppercase;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      display: block; text-align: center;
    }
    .plate-body {
      padding: 8px 10px 6px;
      display: flex; align-items: center; justify-content: center;
    }
    /* Single combined line: กข - 888 */
    .plate-combined {
      font-family: 'Inter', -apple-system, sans-serif; font-size: 24px; font-weight: 800;
      color: #111; letter-spacing: 2px; line-height: 1; text-align: center;
      white-space: nowrap;
    }
    /* Bottom grey band: Thai province name */
    .plate-state {
      font-family: 'Sarabun', 'Inter', sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: 0.2px; color: #444; padding: 3px 6px 5px;
      border-top: 1px solid #ddd; width: 100%; text-align: center;
      background: #f0f0ed;
    }
    /* keep old .plate-thai/.plate-number hidden if still present */
    .plate-thai, .plate-number { display: none; }

    .plate-tag {
      display: inline-block; margin-top: 8px;
      background: var(--accent2); color: white;
      font-size: 9px; font-weight: 700; font-family: 'JetBrains Mono', var(--font-mono);
      padding: 3px 10px; border-radius: 100px; letter-spacing: 1.5px;
    }
    .plate-tag.gold { background: var(--accent); color: var(--black); }
    .plate-price { margin-top: 10px; text-align: center; font-size: 13px; color: var(--muted); font-family: var(--font-mono); }
    .plate-price strong { color: var(--black); font-size: 15px; }

    /* ── listing card plate ── */
    .listing-plate {
      background: #fff; border: 2px solid #bbb; border-radius: 6px;
      width: 156px; overflow: hidden;
      box-shadow: 0 2px 0 #999, var(--shadow-sm);
      display: flex; flex-direction: column; align-items: stretch;
      flex-shrink: 0;
    }
    .listing-plate-header {
      background: #c8001a; padding: 3px 6px 3px;
      display: flex; align-items: center; justify-content: center;
    }
    .listing-plate-header-text {
      font-size: 8px; color: #fff; font-weight: 700; letter-spacing: 1.5px;
      font-family: 'Inter', -apple-system, sans-serif; text-transform: uppercase;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      display: block; text-align: center;
    }
    .listing-plate-body {
      padding: 7px 8px 5px;
      display: flex; align-items: center; justify-content: center;
    }
    .listing-plate .plate-combined {
      font-family: 'Inter', -apple-system, sans-serif; font-size: 20px; font-weight: 800;
      color: #111; letter-spacing: 2px; line-height: 1; text-align: center;
      white-space: nowrap;
    }
    .listing-plate .plate-thai, .listing-plate .plate-number { display: none; }
    .listing-plate .plate-state {
      font-family: var(--font-body); font-size: 8px; font-weight: 700;
      letter-spacing: 0.5px; color: #444; padding: 2px 4px 4px;
      border-top: 1px solid #ddd; width: 100%; text-align: center;
      background: #f0f0ed;
    }

    /* TICKER */
    .ticker-wrap {
      overflow: hidden; border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border); padding: 12px 0; background: var(--surface);
    }
    .ticker { display: flex; gap: 64px; animation: ticker 32s linear infinite; white-space: nowrap; }
    .ticker-item {
      font-family: 'Inter', var(--font-body); font-size: 11px; font-weight: 500;
      letter-spacing: 0.5px; color: var(--muted);
      display: flex; align-items: center; gap: 12px;
    }
    .ticker-item span { color: var(--accent); font-weight: 700; }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* PROMO SECTION */
    .promo-section {
      background: var(--black); padding: 88px 48px;
      overflow: hidden; position: relative;
    }
    .promo-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 90% at 85% 50%, rgba(184,149,42,0.12), transparent 60%);
      pointer-events: none;
    }
    .promo-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .promo-label {
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
      color: var(--accent); text-transform: uppercase; margin-bottom: 20px;
      display: flex; align-items: center; gap: 12px;
    }
    .promo-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
    .promo-title {
      font-family: var(--font-body); font-size: clamp(40px, 5vw, 64px);
      font-weight: 200; line-height: 0.95; color: #fff; letter-spacing: -3px;
    }
    .promo-title em { font-style: italic; color: var(--accent); }
    .promo-desc {
      color: rgba(255,255,255,0.45); font-size: 15px;
      margin-top: 20px; font-weight: 300; line-height: 1.8;
    }
    .promo-cta { margin-top: 36px; display: flex; gap: 12px; }
    .btn-gold {
      background: var(--accent); color: var(--black); border: none;
      padding: 13px 30px; border-radius: 100px; font-size: 13px;
      font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
    }
    .btn-gold:hover { background: #d4a93a; transform: translateY(-1px); }
    .btn-white-outline {
      background: transparent; border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.7); padding: 13px 30px; border-radius: 100px;
      font-size: 13px; cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
    }
    .btn-white-outline:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
    .promo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .promo-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius); padding: 22px; transition: all 0.2s;
    }
    .promo-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,149,42,0.3); }
    .promo-card.featured {
      grid-column: span 2;
      background: rgba(184,149,42,0.07);
      border-color: rgba(184,149,42,0.22);
      display: flex; align-items: center; justify-content: space-between;
    }
    .promo-card-label {
      font-family: var(--font-mono); font-size: 9px;
      letter-spacing: 2.5px; color: var(--accent); margin-bottom: 8px;
    }
    .promo-card-plate {
      font-family: var(--font-display); font-size: 30px;
      font-weight: 600; letter-spacing: 2px; color: #fff; line-height: 1;
    }
    .promo-card-state { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }
    .promo-card-price { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--accent); margin-top: 12px; }
    .promo-tag {
      background: var(--accent); color: var(--black); font-size: 10px;
      font-weight: 700; font-family: var(--font-mono); padding: 4px 12px;
      border-radius: 100px; letter-spacing: 1px; white-space: nowrap;
    }
    .promo-tag.red { background: var(--accent2); color: #fff; }

    /* Thai mini-plate inside promo cards */
    .promo-plate {
      display: inline-flex; flex-direction: column; align-items: stretch;
      background: #fff; border: 2px solid #bbb; border-radius: 5px;
      overflow: hidden; margin: 8px 0 4px;
      box-shadow: 0 2px 0 #999, 0 4px 16px rgba(0,0,0,0.3);
    }
    .promo-plate-header {
      background: #c8001a; padding: 3px 8px 2px;
      font-size: 8px; color: #fff; font-weight: 800; letter-spacing: 1px;
      font-family: var(--font-body); text-align: center; text-transform: uppercase;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .promo-plate-combined {
      font-family: 'Inter', -apple-system, sans-serif; font-size: 20px; font-weight: 800;
      color: #111; letter-spacing: 2px; line-height: 1;
      padding: 7px 14px 5px; text-align: center; white-space: nowrap;
    }
    .promo-plate-province {
      font-family: var(--font-body); font-size: 8px; font-weight: 700;
      letter-spacing: 0.5px; color: #444; text-align: center;
      padding: 2px 8px 5px; border-top: 1px solid #ddd; background: #f0f0ed;
    }

    /* SHARED SECTION */
    section { padding: 96px 40px; max-width: 1200px; margin: 0 auto; }
    .section-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 52px;
    }
    .section-label {
      font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2px;
      color: var(--accent); text-transform: uppercase; margin-bottom: 14px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before { content: ''; width: 22px; height: 1px; background: var(--accent); }
    .section-title {
      font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 66px);
      font-weight: 300; line-height: 0.96; color: var(--black); letter-spacing: -2.5px;
    }
    .section-title em { font-style: normal; font-weight: 200; color: var(--accent); }
    .section-sub {
      color: var(--muted); font-size: 15px; max-width: 460px;
      margin-top: 14px; font-weight: 300; line-height: 1.75; letter-spacing: -0.1px;
    }
    .link-all {
      font-size: 13px; color: var(--muted); text-decoration: none;
      font-weight: 500; display: flex; align-items: center; gap: 6px;
      transition: color 0.2s; white-space: nowrap;
    }
    .link-all:hover { color: var(--text); }

    /* CATEGORIES */
    .categories-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    }
    .category-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 26px 22px;
      cursor: pointer; transition: all 0.25s; position: relative; overflow: hidden;
    }
    .category-card:hover { border-color: var(--border2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .cat-icon { font-size: 22px; margin-bottom: 12px; display: block; }
    .cat-title {
      font-family: var(--font-display); font-size: 22px; font-weight: 400;
      color: var(--black); margin-bottom: 6px;
    }
    .cat-desc { color: var(--muted); font-size: 13px; line-height: 1.6; }
    .cat-count { margin-top: 16px; font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 2px; }
    .cat-arrow { position: absolute; top: 22px; right: 22px; color: var(--border2); font-size: 15px; transition: all 0.2s; }
    .category-card:hover .cat-arrow { color: var(--muted); transform: translate(2px,-2px); }
    .category-card.lucky { background: linear-gradient(135deg,#fffcf0,#fef5d7); border-color: rgba(184,149,42,0.2); }
    .category-card.lucky:hover { border-color: rgba(184,149,42,0.45); }
    .category-card.summary { background: linear-gradient(135deg,#f0f6ff,#e6efff); border-color: rgba(59,130,246,0.12); }
    .category-card.summary:hover { border-color: rgba(59,130,246,0.3); }

    /* LISTINGS */
    .listings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .listing-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.25s;
    }
    .listing-card:hover { border-color: var(--border2); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .listing-plate-wrap {
      background: var(--bg2); padding: 36px 22px 20px;
      display: flex; justify-content: center; align-items: center;
      position: relative; min-height: 120px;
    }
    .listing-badge {
      position: absolute; top: 10px; left: 10px;
      background: rgba(255,255,255,0.92); border: 1px solid var(--border2);
      color: var(--muted); font-family: var(--font-mono);
      font-size: 9px; letter-spacing: 1px; padding: 3px 8px; border-radius: 4px;
    }
    .listing-badge.hot { border-color: rgba(192,57,43,0.3); color: var(--accent2); background: rgba(192,57,43,0.05); }
    .listing-badge.new { border-color: rgba(34,197,94,0.3); color: #16a34a; background: rgba(34,197,94,0.05); }
    .listing-badge.lucky { border-color: rgba(184,149,42,0.3); color: var(--accent); background: rgba(184,149,42,0.05); }
    .listing-info { padding: 14px 16px 16px; }
    .listing-name { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--black); margin-bottom: 3px; letter-spacing: -0.3px; line-height: 1.2; }
    .listing-meta { font-size: 12px; color: var(--muted); margin-bottom: 12px; letter-spacing: 0px; }
    .listing-footer {
      display: flex; flex-direction: column; gap: 10px;
    }
    .listing-price { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--black); }

    /* STATS */
    .stats-wrap { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .stats-inner {
      max-width: 1200px; margin: 0 auto; padding: 60px 40px;
      display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
    }
    .stat-item { text-align: center; padding: 0 24px; border-right: 1px solid var(--border); }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display); font-size: 52px;
      font-weight: 300; letter-spacing: -1px; color: var(--black); line-height: 1;
    }
    .stat-num em { font-style: normal; font-weight: 200; color: var(--accent); }
    .stat-label { font-size: 11.5px; font-weight: 500; color: var(--muted); letter-spacing: 0.1px; margin-top: 8px; }

    /* SEARCH */
    .search-section {
      background: var(--bg2); padding: 96px 40px; text-align: center;
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .search-label { justify-content: center; }
    .search-label::before { display: none; }
    .search-box {
      display: flex; max-width: 540px; margin: 40px auto 0;
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s, border-color 0.2s;
    }
    .search-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(184,149,42,0.1); }
    .search-input {
      flex: 1; background: transparent; border: none; outline: none;
      padding: 16px 22px; font-size: 22px; font-family: var(--font-display);
      font-weight: 600; letter-spacing: 2px; color: var(--black); text-transform: uppercase;
    }
    .search-input::placeholder { color: rgba(0,0,0,0.18); letter-spacing: 2px; font-weight: 300; }
    .search-btn {
      background: var(--black); border: none; color: #fff;
      padding: 0 28px; font-size: 11px; font-weight: 700;
      font-family: var(--font-body); cursor: pointer;
      transition: background 0.2s; letter-spacing: 1.5px;
    }
    .search-btn:hover { background: var(--accent); color: var(--black); }
    .search-preview { display: flex; gap: 10px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
    .preview-chip {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 100px; padding: 5px 14px;
      font-family: var(--font-mono); font-size: 11px;
      color: var(--muted); cursor: pointer; transition: all 0.2s; letter-spacing: 2px;
    }
    .preview-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

    /* HOW IT WORKS */
    .how-section { max-width: 1200px; margin: 0 auto; padding: 96px 40px; }
    .steps {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
      margin-top: 60px; position: relative;
    }
    .steps::before {
      content: ''; position: absolute; top: 26px; left: 8%; right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
    }
    .step { text-align: center; padding: 0 24px; }
    .step-num {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 22px; font-family: var(--font-mono); font-size: 12px;
      font-weight: 700; color: var(--accent); position: relative; z-index: 1; box-shadow: var(--shadow-sm);
    }
    .step-title { font-family: var(--font-body); font-size: 22px; font-weight: 600; color: var(--black); margin-bottom: 8px; letter-spacing: -0.5px; }
    .step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

    /* TESTIMONIALS */
    .testimonials { max-width: 1200px; margin: 0 auto; padding: 0 40px 96px; }
    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
    .testi-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px; transition: all 0.2s;
    }
    .testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--border2); }
    .testi-stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
    .testi-quote {
      font-family: var(--font-display); font-size: 17px;
      font-weight: 300; font-style: italic; color: var(--text);
      line-height: 1.65; margin-bottom: 20px;
    }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--bg2); display: flex; align-items: center;
      justify-content: center; font-size: 15px; border: 1px solid var(--border);
    }
    .testi-name { font-weight: 600; font-size: 13px; color: var(--black); letter-spacing: -0.1px; }
    .testi-plate { font-family: 'JetBrains Mono', var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 1.5px; margin-top: 2px; }

    /* CTA REDESIGN */
    .cta-section {
      background: transparent;
    }
    .cta-section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 40px;
    }
    .cta-block {
      background: var(--black); border-radius: 24px;
      position: relative;
      overflow: clip;
    }
    .cta-block::before {
      content: ''; position: absolute;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(184,149,42,0.12), transparent 60%);
      top: -200px; right: -100px; pointer-events: none;
    }
    .cta-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0;
      align-items: stretch;
      position: relative;
      z-index: 1;
    }
    .cta-left {
      padding: 72px 60px;
    }
    .cta-eyebrow {
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
      color: var(--accent); text-transform: uppercase; margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .cta-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
    .cta-block h2 {
      font-family: var(--font-display); font-size: clamp(40px,5.5vw,72px);
      font-weight: 300; line-height: 1; letter-spacing: -0.5px;
      color: #fff; margin-bottom: 16px;
    }
    .cta-block h2 em { font-style: italic; color: var(--accent); }
    .cta-block p {
      color: rgba(255,255,255,0.45); font-size: 15px;
      max-width: 400px; margin-bottom: 36px; font-weight: 300; line-height: 1.7;
    }
    .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .cta-right {
      background: rgba(255,255,255,0.03);
      border-left: 1px solid rgba(255,255,255,0.06);
      padding: 48px 64px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      min-width: 280px;
    }
    .cta-plate-stack {
      position: relative;
      width: 240px;
      height: 200px;
    }
    .cta-plate-item {
      position: absolute;
      width: 220px;
      border-radius: 14px;
      overflow: hidden;
      display: flex; flex-direction: column;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
      border: 2px solid rgba(255,255,255,0.15);
      transition: transform 0.3s ease;
    }
    /* ป้ายที่ 1 หลังสุด — เอียงซ้าย อยู่บนสุด (top น้อย) */
    .cta-plate-item:nth-child(1) {
      top: 0; left: 20px;
      transform: rotate(-8deg);
      z-index: 1; opacity: 0.55;
    }
    /* ป้ายที่ 2 กลาง */
    .cta-plate-item:nth-child(2) {
      top: 50px; left: 10px;
      transform: rotate(4deg);
      z-index: 2; opacity: 0.78;
    }
    /* ป้ายที่ 3 หน้าสุด — ล่างสุด z-index สูงสุด */
    .cta-plate-item:nth-child(3) {
      top: 100px; left: 0;
      transform: rotate(-1deg);
      z-index: 3; opacity: 1;
    }
    /* plate bg + text inside each item */
    .cta-plate-bg {
      position: relative; overflow: hidden;
      height: 80px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
    }
    .cta-plate-bg.auction::before {
      content:''; position:absolute; inset:0;
      background:
        radial-gradient(ellipse 60% 100% at 78% 30%, rgba(255,215,80,0.95) 0%, rgba(255,175,55,0.7) 20%, transparent 52%),
        linear-gradient(168deg, #5868b8 0%, #7882d0 14%, #9898e0 26%, #c8b8e8 38%, #e8cce0 50%, #f8dcb0 65%, #fdecc0 78%, #fff5d8 100%);
    }
    .cta-plate-bg.plain::before {
      content:''; position:absolute; inset:0; background:#fff;
    }
    .cta-plate-bg::after {
      content:''; position:absolute; bottom:0; left:0; right:0; height:45%;
      background:rgba(72,65,140,0.5);
      -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 70'%3E%3Cpath d='M0,70 L0,48 L50,48 L54,36 L58,22 L60,10 L62,22 L66,36 L70,48 L130,48 L134,36 L138,22 L140,10 L142,22 L146,36 L150,48 L210,48 L214,36 L218,22 L220,10 L222,22 L226,36 L230,48 L290,48 L294,36 L298,22 L300,10 L302,22 L306,36 L310,48 L370,48 L374,36 L378,22 L380,10 L382,22 L386,36 L390,48 L500,48 L500,70 Z' fill='black'/%3E%3C/svg%3E");
      mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 70'%3E%3Cpath d='M0,70 L0,48 L50,48 L54,36 L58,22 L60,10 L62,22 L66,36 L70,48 L130,48 L134,36 L138,22 L140,10 L142,22 L146,36 L150,48 L210,48 L214,36 L218,22 L220,10 L222,22 L226,36 L230,48 L290,48 L294,36 L298,22 L300,10 L302,22 L306,36 L310,48 L370,48 L374,36 L378,22 L380,10 L382,22 L386,36 L390,48 L500,48 L500,70 Z' fill='black'/%3E%3C/svg%3E");
      -webkit-mask-size:100% 100%; mask-size:100% 100%;
    }
    .cta-plate-num {
      position:relative; z-index:2;
      font-family:'Sarabun','Inter',sans-serif;
      font-size:26px; font-weight:900; color:#180058;
      letter-spacing:1px; line-height:1;
      text-shadow:0 1px 3px rgba(255,255,255,0.5);
    }
    .cta-plate-prov {
      position:relative; z-index:2;
      font-family:'Sarabun',sans-serif;
      font-size:9px; font-weight:700; color:#1a1060;
      margin-top:4px;
    }
    .cta-stat {
      text-align: center;
      padding-top: 8px;
    }
    .cta-stat-num {
      font-family: var(--font-display); font-size: 36px; font-weight: 300;
      color: #fff; letter-spacing: -1px; line-height: 1;
    }
    .cta-stat-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; margin-top: 4px; }

    @media (max-width: 900px) {
      .cta-inner { grid-template-columns: 1fr; }
      .cta-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); padding: 40px; }
    }

    /* ═══ FOOTER ═══ */
    .site-footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }

    /* Footnote strip */
    .footer-note {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 40px;
      border-bottom: 1px solid var(--border);
    }
    .footer-note ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
    .footer-note li {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* 5-column directory */
    .footer-directory {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 40px 32px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0 32px;
      border-bottom: 1px solid var(--border);
    }

    .footer-col { display: flex; flex-direction: column; gap: 28px; }

    .footer-col-section {}

    .footer-col-title {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      color: var(--black);
      letter-spacing: 0.1px;
      margin-bottom: 10px;
    }

    .footer-col-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .footer-col-list a {
      font-size: 12px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.15s;
      line-height: 1.4;
    }
    .footer-col-list a:hover { color: var(--text); }

    /* Bottom bar */
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 40px 32px;
    }
    .footer-bottom-shop {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 14px;
    }
    .footer-bottom-shop a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
    .footer-bottom-shop a:hover { color: var(--text); }

    .footer-bottom-locale {
      display: flex;
      gap: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 14px;
    }
    .footer-bottom-locale a {
      font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.15s;
    }
    .footer-bottom-locale a:hover { color: var(--text); }

    .footer-bottom-legal {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copyright { font-size: 11px; color: var(--muted); }
    .footer-legal-links {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 4px 0;
    }
    .footer-legal-links li {
      display: flex;
      align-items: center;
    }
    .footer-legal-links li::after {
      content: '|';
      margin: 0 10px;
      color: var(--border2);
      font-size: 11px;
    }
    .footer-legal-links li:last-child::after { display: none; }
    .footer-legal-links a {
      font-size: 11px; color: var(--muted);
      text-decoration: none; transition: color 0.15s;
    }
    .footer-legal-links a:hover { color: var(--text); }

    /* Footer responsive */
    @media (max-width: 1024px) {
      .footer-directory { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 680px) {
      .footer-directory { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; padding: 32px 20px; }
      .footer-note { padding: 14px 20px; }
      .footer-bottom { padding: 16px 20px 28px; }
      .footer-bottom-legal { flex-direction: column; align-items: flex-start; }
    }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* WIDE SECTION WRAPPER */
    .wide-section {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .wide-section-inner { max-width: 1200px; margin: 0 auto; padding: 96px 40px; }

    /* ═══ PLATE GALLERY (Apple TV+ style) ═══ */
    .plate-gallery-section {
      background: var(--black);
      position: relative;
    }
    .plate-gallery-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(184,149,42,0.08), transparent 60%);
      pointer-events: none;
      z-index: 1;
    }

    /* GALLERY VIEWPORT */
    .pg-viewport {
      position: relative;
      width: 100%;
      height: 560px;
      overflow: hidden;
    }

    .pg-item {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
      background-size: cover;
      background-position: center;
      cursor: pointer;
    }
    .pg-item.active { opacity: 1; z-index: 2; }
    .pg-item.prev   { opacity: 0; z-index: 1; }

    /* Dark scrim on each slide */
    .pg-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.1) 70%,
        transparent 100%
      );
      z-index: 1;
    }

    .pg-item-inner {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 56px 72px;
    }

    .pg-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pg-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }

    .pg-title {
      font-family: var(--font-body);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.5px;
      color: #fff;
      margin-bottom: 10px;
    }
    .pg-title em { font-style: normal; font-weight: 200; color: var(--accent); }

    .pg-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      max-width: 360px;
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 28px;
    }

    .pg-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      padding: 11px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-family: var(--font-body);
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      backdrop-filter: blur(10px);
      width: fit-content;
    }
    .pg-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }

    /* Floating plate on right */
    .pg-plate-float {
      position: absolute;
      right: 72px;
      top: 50%;
      transform: translateY(-50%) translateX(20px);
      z-index: 3;
      opacity: 0;
      transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
    }
    .pg-item.active .pg-plate-float {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }
    .pg-plate-display {
      background: #fff;
      border: 3px solid #bbb;
      border-radius: 8px;
      min-width: 190px;
      overflow: hidden;
      box-shadow: 0 4px 0 #888, 0 16px 60px rgba(0,0,0,0.5);
    }
    .pg-plate-display .plate-header {
      background: #c8001a; padding: 5px 10px 4px;
      display: flex; align-items: center; justify-content: center;
    }
    .pg-plate-display .plate-header-text {
      font-size: 9.5px; color: #fff; font-weight: 800; letter-spacing: 1px;
      font-family: var(--font-body); text-transform: uppercase;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      max-width: 180px; display: block; text-align: center;
    }
    .pg-plate-display .plate-body {
      padding: 10px 16px 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .pg-plate-display .plate-combined {
      font-family: 'Inter', -apple-system, sans-serif; font-size: 32px; font-weight: 800;
      color: #111; letter-spacing: 2px; line-height: 1; text-align: center;
      white-space: nowrap;
    }
    .pg-plate-display .plate-thai { display: none; }
    .pg-plate-display .plate-number { display: none; }
    .pg-plate-display .plate-state {
      font-family: var(--font-body); font-size: 10px; font-weight: 700;
      letter-spacing: 0.5px; color: #444; padding: 4px 8px 6px;
      border-top: 1px solid #ddd; width: 100%; text-align: center;
      background: #f0f0ed;
    }
    .pg-plate-price {
      margin-top: 12px;
      text-align: center;
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    /* NAV CONTROLS */
    .pg-controls {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 10;
      pointer-events: none;
    }
    .pg-arrow {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      pointer-events: all;
      backdrop-filter: blur(10px);
    }
    .pg-arrow:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }

    /* DOTNAV */
    .pg-dotnav {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 20px 0;
      position: relative;
      z-index: 5;
      background: var(--black);
    }
    .pg-dot {
      width: 6px; height: 6px;
      border-radius: 3px;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }
    .pg-dot.active {
      width: 24px;
      background: var(--accent);
    }

    /* PROGRESS BAR */
    .pg-progress {
      position: absolute;
      bottom: 0; left: 0;
      height: 2px;
      background: var(--accent);
      width: 0%;
      z-index: 10;
      transition: width linear;
    }

    /* Gallery section header */
    .pg-header {
      position: relative;
      z-index: 2;
      padding: 64px 72px 40px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .pg-header-label {
      font-family: var(--font-mono); font-size: 10px;
      letter-spacing: 2px; color: var(--accent); text-transform: uppercase;
      margin-bottom: 10px;
      display: flex; align-items: center; gap: 10px;
    }
    .pg-header-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }

    .pg-header-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.5px;
    }
    .pg-header-title em { font-style: italic; color: var(--accent); }

    .pg-view-all {
      font-size: 13px; color: rgba(255,255,255,0.45);
      text-decoration: none; font-weight: 500;
      display: flex; align-items: center; gap: 6px;
      transition: color 0.2s; white-space: nowrap;
    }
    .pg-view-all:hover { color: rgba(255,255,255,0.8); }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      .categories-grid { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 900px) {
      .stats-inner { grid-template-columns: repeat(2,1fr); }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
      .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
      .stat-item:last-child { border-bottom: none; }
      .testi-grid { grid-template-columns: 1fr; }
      .promo-inner { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
    }
    @media (max-width: 680px) {
      nav { padding: 0 20px; }
      .nav-links, .nav-actions { display: none; }
      .nav-hamburger { display: flex; }
      .hero h1 { font-size: 56px; }
      .hero-cta { flex-direction: column; align-items: center; }
      .plate-showcase { display: none; }
      .categories-grid { grid-template-columns: repeat(2,1fr); }
      .listings-grid { grid-template-columns: repeat(2, 1fr); }
      section { padding: 60px 20px; }
      .cta-section-inner { padding: 40px 20px; }
      .site-footer .footer-bottom-legal { flex-direction: column; align-items: flex-start; }
      .promo-section { padding: 60px 20px; }
      .promo-cards { grid-template-columns: 1fr; }
      .promo-card.featured { grid-column: span 1; flex-direction: column; gap: 12px; }
      .wide-section-inner { padding: 60px 20px; }
      .pg-viewport { height: 420px; }
      .pg-item-inner { padding: 32px 28px; }
      .pg-plate-float { display: none; }
      .pg-header { padding: 40px 28px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
      .pg-controls { display: none; }
    }

    @media (min-width: 681px) and (max-width: 900px) {
      nav { padding: 0 28px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .pg-plate-float { right: 28px; }
      .pg-plate-display .plate-number { font-size: 36px; }
      .pg-item-inner { padding: 40px 40px; }
      .pg-header { padding: 48px 40px 28px; }
    }
  
    /* ── Nav wish button ── */
    .nav-wish-btn {
      position: relative;
      width: 38px; height: 38px; border-radius: 50%;
      background: transparent; border: 1.5px solid rgba(0,0,0,0.12);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.2s;
      color: #888;
    }
    .nav-wish-btn:hover { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,0.06); }
    .nav-wish-btn.active { background: rgba(239,68,68,0.08); border-color: #ef4444; color: #ef4444; }
    .nav-wish-badge {
      position: absolute; top: -4px; right: -4px;
      min-width: 16px; height: 16px; border-radius: 100px;
      background: #ef4444; color: #fff; border: 2px solid #fff;
      font-size: 9px; font-weight: 800;
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0 3px; line-height: 1;
    }
    .wish-tab-dropdown {
      position: absolute; top: calc(100% + 10px); right: 0;
      background: #fff; border: 1px solid rgba(0,0,0,0.1);
      border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.13);
      padding: 8px; display: flex; flex-direction: column; gap: 2px;
      min-width: 220px; z-index: 1000;
      opacity: 0; pointer-events: none;
      transform: translateY(-6px) scale(0.97); transform-origin: top right;
      transition: all 0.18s cubic-bezier(0.34,1.56,0.64,1);
    }
    .wish-tab-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
    .wish-drop-header {
      font-size: 11px; font-weight: 700; color: #999; letter-spacing: 1px;
      text-transform: uppercase; padding: 4px 10px 6px;
    }
    .wish-drop-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 12px; border-radius: 9px; cursor: pointer;
      font-size: 13px; font-weight: 600; font-family: var(--font-body);
      color: #111; transition: background 0.12s; gap: 10px;
    }
    .wish-drop-item:hover { background: #f5f5f7; }
    .wish-drop-item.active { background: rgba(239,68,68,0.07); color: #ef4444; }
    .wish-drop-item-count {
      min-width: 22px; height: 22px; border-radius: 100px;
      background: rgba(239,68,68,0.1); color: #ef4444;
      font-size: 11px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }

    /* ══ CALCULATOR SECTION ══ */
    .calc-section {
      background: var(--black); padding: 96px 48px;
      position: relative; overflow: hidden;
    }
    .calc-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 90% at 15% 50%, rgba(184,149,42,0.1), transparent 60%);
      pointer-events: none;
    }
    .calc-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .calc-label {
      font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2px;
      color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
      display: flex; align-items: center; gap: 12px;
    }
    .calc-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
    .calc-title {
      font-family: var(--font-body); font-size: clamp(36px,4.5vw,58px);
      font-weight: 200; line-height: 0.96; color: #fff; letter-spacing: -3px;
      margin-bottom: 16px;
    }
    .calc-title em { font-style: normal; font-weight: 200; color: var(--accent); }
    .calc-desc { color: rgba(255,255,255,0.45); font-size: 15px; font-weight: 300; line-height: 1.75; margin-bottom: 32px; max-width: 440px; }
    .calc-widget {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 36px; position: relative;
    }
    .calc-widget-title {
      font-size: 13px; font-weight: 600; color: #fff; letter-spacing: -0.2px; margin-bottom: 20px;
      display: flex; align-items: center; gap: 8px;
    }
    .calc-input-row {
      display: flex; gap: 10px; margin-bottom: 16px; align-items: center; flex-wrap: wrap;
    }
    .calc-input {
      flex: 1; min-width: 120px; background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
      padding: 12px 16px; color: #fff; font-family: var(--font-mono); font-size: 18px;
      font-weight: 600; letter-spacing: 2px; text-transform: uppercase; outline: none;
      transition: border-color 0.2s;
    }
    .calc-input::placeholder { color: rgba(255,255,255,0.2); font-size: 14px; letter-spacing: 2px; }
    .calc-input:focus { border-color: var(--accent); }
    .calc-btn {
      background: var(--accent); color: var(--black); border: none;
      padding: 12px 24px; border-radius: 10px; font-size: 13px; font-weight: 700;
      font-family: var(--font-body); cursor: pointer; transition: all 0.2s; white-space: nowrap;
    }
    .calc-btn:hover { background: #d4a93a; transform: translateY(-1px); }
    .calc-result {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px; padding: 20px; margin-top: 8px; display: none;
    }
    .calc-result.show { display: block; }
    .calc-result-sum {
      font-family: var(--font-body); font-size: 48px; font-weight: 200;
      color: var(--accent); letter-spacing: -3px; line-height: 1; margin-bottom: 6px;
    }
    .calc-result-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
    .calc-result-meaning {
      font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 400; line-height: 1.6;
      padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08);
    }
    .calc-result-meaning strong { color: var(--accent); }
    .calc-char-map {
      margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
    }
    .calc-char-map-title { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
    .calc-char-badges { display: flex; flex-wrap: wrap; gap: 6px; }
    .calc-char-badge {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px; padding: 4px 9px; font-size: 11px; color: rgba(255,255,255,0.55);
      font-family: var(--font-mono);
    }
    .calc-char-badge span { color: var(--accent); font-weight: 700; }
    @media (max-width: 900px) { .calc-inner { grid-template-columns: 1fr; gap: 40px; } }
    @media (max-width: 680px) { .calc-section { padding: 60px 20px; } }

    /* ── CALC MODE TOGGLE ── */
    .calc-mode-toggle {
      display: flex; gap: 6px; margin-bottom: 14px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 4px;
    }
    .calc-mode-btn {
      flex: 1; padding: 8px 14px; border-radius: 7px; border: none;
      font-size: 12px; font-weight: 600; font-family: var(--font-body);
      cursor: pointer; transition: all 0.2s; color: rgba(255,255,255,0.45);
      background: transparent; letter-spacing: -0.1px;
    }
    .calc-mode-btn.active {
      background: var(--accent); color: var(--black);
      box-shadow: 0 2px 8px rgba(184,149,42,0.3);
    }
    .calc-mode-btn:not(.active):hover { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

    /* ══ HORO CTA BANNER ══ */
    .horo-cta-section {
      background: linear-gradient(135deg, #0e0b1a 0%, #1a0e2e 40%, #0b1a1a 100%);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 64px 48px; position: relative; overflow: hidden;
    }
    .horo-cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 55% 80% at 80% 50%, rgba(120,60,200,0.12), transparent 60%),
                  radial-gradient(ellipse 40% 60% at 20% 30%, rgba(60,160,200,0.08), transparent 55%);
      pointer-events: none;
    }
    .horo-cta-inner {
      max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
      display: flex; align-items: center; gap: 64px;
    }
    .horo-cta-orb {
      flex-shrink: 0; width: 120px; height: 120px; border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, rgba(180,100,255,0.5), rgba(60,180,220,0.2) 60%, transparent 80%);
      border: 1px solid rgba(180,100,255,0.25);
      box-shadow: 0 0 60px rgba(150,80,255,0.2), inset 0 0 30px rgba(180,100,255,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 48px; animation: horo-orb-pulse 4s ease-in-out infinite;
    }
    .horo-cta-orb::after { content: '🔮'; }
    @keyframes horo-orb-pulse {
      0%, 100% { box-shadow: 0 0 40px rgba(150,80,255,0.2), inset 0 0 20px rgba(180,100,255,0.1); }
      50% { box-shadow: 0 0 80px rgba(150,80,255,0.35), inset 0 0 40px rgba(180,100,255,0.2); }
    }
    .horo-cta-content { flex: 1; }
    .horo-cta-eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(180,130,255,0.8); margin-bottom: 12px;
    }
    .horo-cta-title {
      font-family: var(--font-body); font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 200; line-height: 1.05; letter-spacing: -2px; color: #fff; margin-bottom: 14px;
    }
    .horo-cta-title em { font-style: normal; color: #c89eff; font-weight: 200; }
    .horo-cta-sub {
      font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.75;
      max-width: 460px; margin-bottom: 20px;
    }
    .horo-cta-features { display: flex; flex-wrap: wrap; gap: 8px; }
    .horo-cta-features span {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 500;
      color: rgba(255,255,255,0.6);
    }
    .horo-cta-action { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .horo-cta-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, #9b59e0, #6e3fba);
      color: #fff; border: none; padding: 18px 36px; border-radius: 100px;
      font-size: 15px; font-weight: 700; font-family: var(--font-body);
      cursor: pointer; text-decoration: none; letter-spacing: -0.2px;
      transition: all 0.25s; white-space: nowrap;
      box-shadow: 0 8px 32px rgba(130,60,220,0.4);
    }
    .horo-cta-btn:hover {
      background: linear-gradient(135deg, #a96df0, #7d4fd0);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 16px 48px rgba(130,60,220,0.55);
    }
    .horo-cta-btn svg { transition: transform 0.2s; }
    .horo-cta-btn:hover svg { transform: translateX(4px); }
    .horo-cta-note { font-size: 11px; color: rgba(255,255,255,0.3); }
    @media (max-width: 900px) {
      .horo-cta-inner { flex-direction: column; gap: 32px; text-align: center; }
      .horo-cta-orb { width: 80px; height: 80px; font-size: 32px; }
      .horo-cta-sub { max-width: 100%; }
      .horo-cta-features { justify-content: center; }
      .horo-cta-section { padding: 52px 24px; }
    }

    /* ══ HOW TO BOOK SECTION ══ */
    .book-section {
      max-width: 1200px; margin: 0 auto; padding: 96px 40px;
    }
    .book-steps {
      display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
      margin-top: 60px; position: relative;
    }
    .book-steps::before {
      content: ''; position: absolute; top: 26px; left: 5%; right: 5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
    }
    .book-step { text-align: center; padding: 0 16px; }
    .book-step-num {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 22px; font-family: var(--font-mono); font-size: 12px;
      font-weight: 700; color: var(--accent); position: relative; z-index: 1; box-shadow: var(--shadow-sm);
    }
    .book-step-title { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 8px; letter-spacing: -0.3px; }
    .book-step-desc { font-size: 12.5px; color: var(--muted); line-height: 1.65; }
    .book-step-icon { font-size: 20px; margin-bottom: 12px; display: block; }
    @media (max-width: 900px) {
      .book-steps { grid-template-columns: 1fr 1fr; }
      .book-steps::before { display: none; }
    }
    @media (max-width: 680px) { .book-steps { grid-template-columns: 1fr; } }

    /* ══ CRITERIA / RULES SECTION ══ */
    .rules-section {
      background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 96px 48px;
    }
    .rules-inner { max-width: 1200px; margin: 0 auto; }
    .rules-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 52px;
    }
    .rule-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px 26px; transition: all 0.2s;
    }
    .rule-card:hover { border-color: var(--border2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .rule-icon { font-size: 24px; margin-bottom: 14px; display: block; }
    .rule-title { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 10px; letter-spacing: -0.3px; }
    .rule-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
    .rule-note {
      margin-top: 12px; padding: 10px 14px;
      background: var(--accent-light); border: 1px solid rgba(184,149,42,0.2);
      border-radius: 8px; font-size: 12px; color: #7a6010; line-height: 1.5;
    }
    @media (max-width: 900px) { .rules-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 680px) { .rules-grid { grid-template-columns: 1fr; } .rules-section { padding: 60px 20px; } }

    /* ══ FAQ SECTION ══ */
    .faq-section { max-width: 860px; margin: 0 auto; padding: 96px 40px; }
    .faq-list { margin-top: 52px; display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-question {
      width: 100%; background: none; border: none; text-align: left;
      padding: 20px 0; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 20px;
      font-family: var(--font-body); font-size: 15px; font-weight: 500;
      color: var(--black); letter-spacing: -0.2px; transition: color 0.2s;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-chevron {
      flex-shrink: 0; width: 20px; height: 20px;
      border: 1px solid var(--border2); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: var(--muted);
      transition: transform 0.3s ease, background 0.2s;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--accent); border-color: var(--accent); color: var(--black); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
      padding: 0;
    }
    .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
    .faq-answer p {
      font-size: 14px; color: var(--muted); line-height: 1.75;
      padding-right: 40px; font-weight: 300;
    }
    .faq-answer p + p { margin-top: 10px; }
    .faq-answer .faq-highlight {
      display: inline-block; background: var(--accent-light); border: 1px solid rgba(184,149,42,0.2);
      border-radius: 6px; padding: 8px 14px; margin-top: 10px;
      font-size: 13px; color: #7a6010; line-height: 1.5;
    }
    @media (max-width: 680px) { .faq-section { padding: 60px 20px; } }

    /* ══ BOOKING PACKAGE SECTION ══ */
    .pkg-section {
      background: var(--black); padding: 96px 48px;
      position: relative; overflow: hidden;
    }
    .pkg-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 80% at 80% 30%, rgba(184,149,42,0.1), transparent 60%);
      pointer-events: none;
    }
    .pkg-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
    .pkg-label {
      font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2px;
      color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
      display: flex; align-items: center; gap: 12px;
    }
    .pkg-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
    .pkg-title {
      font-family: var(--font-body); font-size: clamp(36px,4.5vw,58px);
      font-weight: 200; line-height: 0.96; color: #fff; letter-spacing: -3px; margin-bottom: 14px;
    }
    .pkg-title em { font-style: normal; font-weight: 200; color: var(--accent); }
    .pkg-desc { color: rgba(255,255,255,0.45); font-size: 15px; font-weight: 300; line-height: 1.7; margin-bottom: 52px; max-width: 520px; }
    .pkg-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
    }
    .pkg-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px; padding: 32px; transition: all 0.25s; position: relative; overflow: hidden;
    }
    .pkg-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,149,42,0.25); transform: translateY(-4px); }
    .pkg-card.featured {
      background: rgba(184,149,42,0.09); border-color: rgba(184,149,42,0.3);
    }
    .pkg-card.featured::before {
      content: 'แนะนำ'; position: absolute; top: 16px; right: 16px;
      background: var(--accent); color: var(--black); font-size: 10px; font-weight: 700;
      padding: 3px 10px; border-radius: 100px; letter-spacing: 0.5px;
    }
    .pkg-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
    .pkg-price {
      font-family: var(--font-body); font-size: 42px; font-weight: 200;
      color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 4px;
    }
    .pkg-price-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
    .pkg-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .pkg-features li { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
    .pkg-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
    .pkg-btn {
      width: 100%; padding: 13px; border-radius: 100px; font-size: 13px; font-weight: 600;
      font-family: var(--font-body); cursor: pointer; transition: all 0.2s; border: none;
    }
    .pkg-btn-outline {
      background: transparent; border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.8);
    }
    .pkg-btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
    .pkg-btn-gold { background: var(--accent); color: var(--black); }
    .pkg-btn-gold:hover { background: #d4a93a; transform: translateY(-1px); }
    @media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; max-width: 440px; } }
    @media (max-width: 680px) { .pkg-section { padding: 60px 20px; } }

    /* ══ PROVINCE TABLE ══ */
    .province-section {
      background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 96px 48px;
    }
    .province-inner { max-width: 1200px; margin: 0 auto; }
    .province-tabs {
      display: flex; gap: 8px; flex-wrap: wrap; flex: 1;
    }

    /* ── Province Selector ── */
    .prov-selector { margin-bottom: 0; }
    .prov-top-row {
      display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    }
    /* quick top-10 tabs */
    .prov-tab {
      background: var(--surface); border: 1.5px solid var(--border2);
      border-radius: 100px; padding: 6px 16px;
      font-size: 12px; font-weight: 600; font-family: var(--font-body);
      color: var(--muted); cursor: pointer;
      transition: all 0.18s cubic-bezier(0.34,1.56,0.64,1); white-space: nowrap;
    }
    .prov-tab:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
    .prov-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 3px 12px rgba(184,149,42,0.35); }
    /* "ดูทั้ง 77 จังหวัด" trigger */
    .prov-all-trigger {
      display: flex; align-items: center; gap: 5px;
      background: transparent; border: 1.5px dashed var(--border2);
      border-radius: 100px; padding: 6px 14px;
      font-size: 12px; font-weight: 600; font-family: var(--font-body);
      color: var(--muted); cursor: pointer;
      transition: all 0.18s; position: relative; white-space: nowrap;
    }
    .prov-all-trigger:hover { border-color: var(--accent); color: var(--accent); }
    .prov-all-trigger.open { border-color: var(--accent); color: var(--accent); background: rgba(184,149,42,0.06); }
    .prov-all-chevron {
      width: 12px; height: 12px; transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
      flex-shrink: 0;
    }
    .prov-all-trigger.open .prov-all-chevron { transform: rotate(180deg); }

    /* Apple-style dropdown */
    .prov-dropdown-wrap {
      position: relative; width: 100%;
    }
    .prov-dropdown {
      position: absolute; top: 8px; left: 0; right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 16px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
      padding: 20px 24px 24px;
      z-index: 200;
      /* Apple-style reveal */
      opacity: 0; pointer-events: none;
      transform: translateY(-8px) scale(0.98);
      transform-origin: top center;
      transition: opacity 0.28s cubic-bezier(0.4,0,0.2,1),
                  transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
    }
    .prov-dropdown.open {
      opacity: 1; pointer-events: all; transform: translateY(0) scale(1);
    }
    .prov-dropdown-title {
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      color: var(--muted); text-transform: uppercase; margin-bottom: 12px;
    }
    .prov-region-group { margin-bottom: 16px; }
    .prov-region-label {
      font-size: 10px; font-weight: 700; color: var(--accent);
      letter-spacing: 0.8px; margin-bottom: 8px; display: block;
    }
    .prov-grid {
      display: flex; flex-wrap: wrap; gap: 6px;
    }
    .prov-grid-btn {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 100px; padding: 5px 13px;
      font-size: 11.5px; font-weight: 500; font-family: var(--font-body);
      color: var(--black); cursor: pointer; white-space: nowrap;
      transition: all 0.16s cubic-bezier(0.34,1.56,0.64,1);
    }
    .prov-grid-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-1px) scale(1.04); }
    .prov-grid-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
    /* divider */
    .prov-group-divider {
      height: 1px; background: var(--border); margin: 20px 0;
    }
    .ptab {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 100px; padding: 7px 18px; font-size: 12.5px; font-weight: 500;
      color: var(--muted); cursor: pointer; transition: all 0.18s;
    }
    .ptab.active { background: var(--black); color: #fff; border-color: var(--black); }    .prov-tab:not(.active)[data-id]:not([data-id="bkk"])::after { content: ' •'; font-size: 8px; opacity: 0.5; }
    .ptab:hover:not(.active) { border-color: var(--muted); color: var(--text); }
    .province-cards {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
    }
    .prov-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 14px; padding: 20px; cursor: pointer; transition: all 0.2s;
      display: flex; flex-direction: column; gap: 8px;
    }
    .prov-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .prov-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
    .prov-badge {
      font-size: 9px; font-weight: 700; font-family: var(--font-mono);
      letter-spacing: 1.5px; color: var(--accent); background: var(--accent-light);
      border: 1px solid rgba(184,149,42,0.2); padding: 2px 8px; border-radius: 4px; white-space: nowrap;
    }
    .prov-status { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 4px rgba(34,197,94,0.5); flex-shrink: 0; margin-top: 3px; }
    .prov-status.soon { background: var(--accent); box-shadow: 0 0 4px rgba(184,149,42,0.5); }
    .prov-name { font-size: 16px; font-weight: 600; color: var(--black); letter-spacing: -0.3px; }
    .prov-eng { font-size: 11px; color: var(--muted); font-weight: 400; }
    .prov-current {
      font-family: var(--font-mono); font-size: 13px; font-weight: 700;
      color: var(--black); letter-spacing: 2px; padding: 6px 0; border-top: 1px solid var(--border);
      margin-top: 4px;
    }
    .prov-price { font-size: 12px; color: var(--muted); }
    .prov-price strong { color: var(--accent); font-size: 13px; }
    @media (max-width: 900px) { .province-cards { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 680px) { .province-cards { grid-template-columns: 1fr 1fr; } .province-section { padding: 60px 20px; } }

    /* ══ PROVINCE SECTION REDESIGN ══ */
    .province-section { background: var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:96px 48px; }
    .province-inner { max-width:1200px; margin:0 auto; }
    .province-tabs { display:flex; gap:8px; margin-top:48px; margin-bottom:32px; flex-wrap:wrap; }
    .ptab { background:var(--surface); border:1px solid var(--border2); border-radius:100px; padding:7px 18px; font-size:12.5px; font-weight:500; color:var(--muted); cursor:pointer; transition:all 0.18s; }
    .ptab.active { background:var(--black); color:#fff; border-color:var(--black); }
    .ptab:hover:not(.active) { border-color:var(--muted); color:var(--text); }

    /* Group card */
    .pgroup { margin-bottom:52px; }
    .pgroup:last-child { margin-bottom:0; }
    .pgroup-header {
      display:flex; justify-content:space-between; align-items:center;
      margin-bottom:18px; padding-bottom:14px; border-bottom:1px solid var(--border);
    }
    .pgroup-title {
      font-family:var(--font-body); font-size:22px; font-weight:600;
      color:var(--black); letter-spacing:-0.5px;
    }
    .group-clear-filter-btn {
      display: none; align-items: center; gap: 5px;
      background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25);
      color: #ef4444; font-size: 11px; font-weight: 600;
      font-family: var(--font-body); padding: 5px 12px;
      border-radius: 100px; cursor: pointer; white-space: nowrap;
      transition: all 0.18s;
    }
    .group-clear-filter-btn:hover { background: rgba(239,68,68,0.15); transform: scale(1.04); }

    
    
    
    
    
    
    
    
    
    
    
    
    .province-tabs-row {
      display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
      position: sticky; top: 60px; z-index: 40; background: var(--bg2);
      padding: 12px 0; margin-bottom: 20px; border-bottom: 1px solid var(--border);
    }
    .pgroup-title span { font-weight:300; color:var(--muted); font-size:16px; margin-left:8px; }
    .pgroup-badge {
      font-family:var(--font-mono); font-size:10px; letter-spacing:1.5px;
      color:#fff; background:var(--accent);
      border:none;
      padding:4px 13px; border-radius:100px; font-weight:800;
      box-shadow: 0 2px 8px rgba(184,149,42,0.35);
      text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    }
    .pgroup-desc { font-size:13px; color:var(--muted); margin-bottom:20px; line-height:1.6; }

    /* Plate grid inside group */
    .pplate-grid {
      display:grid; grid-template-columns:repeat(5,1fr); gap:12px;
      margin-bottom:16px;
    }
    .pplate-card {
      background:var(--surface); border:1px solid var(--border);
      border-radius:14px; padding:16px 12px 14px; cursor:pointer;
      transition:all 0.22s; display:flex; flex-direction:column; align-items:center; gap:10px;
      position:relative; overflow:visible;
    }
    .pplate-card.sold { opacity:0.45; pointer-events:none; }

    /* ── WISHLIST ── */
    .wish-wrap { position: absolute; top: 8px; right: 8px; z-index: 100; isolation: isolate; }
    .wish-trigger {
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(255,255,255,0.92); border: none; cursor: pointer; padding: 0;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.13);
      transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
      position: relative; overflow: visible;
    }
    .wish-trigger:hover { transform: scale(1.15); box-shadow: 0 4px 14px rgba(239,68,68,0.3); }
    /* tooltip on top */
    .wish-trigger::after {
      content: 'เพิ่มในรายการโปรด';
      position: absolute; bottom: calc(100% + 6px); left: 50%;
      transform: translateX(-50%) scale(0.85); transform-origin: bottom center;
      background: #0a0a0a; color: #fff; font-size: 10px; font-weight: 500;
      font-family: var(--font-body, sans-serif); white-space: nowrap;
      padding: 4px 9px; border-radius: 6px; pointer-events: none;
      opacity: 0; transition: opacity 0.15s, transform 0.15s; z-index: 300;
    }
    .wish-trigger:hover::after { opacity: 1; transform: translateX(-50%) scale(1); }
    /* bridge gap so mouse can reach picker without hover breaking */
    .wish-trigger::before {
      content: ''; position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%);
      width: 50px; height: 16px;
    }
    .wish-icon-single { display: block; }
    .wish-icon-single path { fill: none; stroke: #ccc; stroke-width: 2; transition: all 0.2s; }
    .wish-trigger:hover .wish-icon-single path { stroke: #ef4444; fill: rgba(239,68,68,0.15); }
    .wish-wrap.liked .wish-icon-single path { fill: #ef4444; stroke: #ef4444; }
    .wish-icon-double { display: none; }
    .wish-wrap.loved .wish-icon-single { display: none; }
    .wish-wrap.loved .wish-icon-double { display: block; position: relative; width: 22px; height: 18px; }
    .wish-icon-double svg { position: absolute; width: 14px; height: 14px; }
    .wish-icon-double svg path { fill: #ef4444; stroke: #ef4444; stroke-width: 1; }
    .wish-icon-double svg:nth-child(1) { bottom: 0; right: 0; }
    .wish-icon-double svg:nth-child(2) { top: 0; left: 0; opacity: 0.7; }
    /* picker */
    .wish-picker {
      position: absolute; top: calc(100% + 8px); left: 50%;
      transform: translateX(-50%) translateY(-4px) scale(0.9);
      transform-origin: top center;
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      padding-top: 6px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
      z-index: 200;
    }
    .wish-wrap:hover .wish-picker { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1); }
    .wish-opt {
      display: flex; align-items: center; justify-content: center;
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(30,30,30,0.88);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1);
      cursor: pointer;
      transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), background 0.15s, box-shadow 0.15s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    }
    .wish-opt:hover { background: linear-gradient(145deg, rgba(220,40,40,0.9), rgba(180,20,20,0.88)); transform: scale(1.18); box-shadow: 0 6px 20px rgba(239,68,68,0.45); }
    .wish-opt.wo-active { background: linear-gradient(145deg, rgba(220,40,40,0.9), rgba(180,20,20,0.88)); box-shadow: 0 4px 14px rgba(239,68,68,0.5); }
    .wish-opt-hearts { position: relative; width: 18px; height: 16px; }
    .wish-opt-hearts svg { position: absolute; width: 12px; height: 12px; }
    .wish-opt-hearts svg path { fill: #ef4444; stroke: #ef4444; stroke-width: 0.5; }
    .wish-opt.opt-single .wish-opt-hearts svg:nth-child(1) { top: 50%; left: 50%; transform: translate(-50%,-50%); }
    .wish-opt.opt-single .wish-opt-hearts svg:nth-child(2) { display: none; }
    .wish-opt.opt-double .wish-opt-hearts svg:nth-child(1) { bottom: 0; right: 0; }
    .wish-opt.opt-double .wish-opt-hearts svg:nth-child(2) { top: 0; left: 0; opacity: 0.65; }
    .wish-opt-label { display: none; }
    @keyframes wish-float { 0%{opacity:1;transform:translateX(-50%) translateY(0) scale(1.2)} 100%{opacity:0;transform:translateX(-50%) translateY(-32px) scale(0.4)} }
    .wish-particle { position:absolute; top:-4px; left:50%; transform:translateX(-50%); pointer-events:none; z-index:30; font-size:14px; line-height:1; animation:wish-float 0.65s ease forwards; }
    @keyframes wish-pop { 0%{transform:scale(1)} 40%{transform:scale(1.55)} 70%{transform:scale(0.88)} 100%{transform:scale(1)} }
    .wish-trigger.wish-popping { animation: wish-pop 0.4s cubic-bezier(0.34,1.56,0.64,1); }
    /* ── clear wishlist btn ── */
    .wish-clear-btn {
      display: none; align-items: center; gap: 6px;
      background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
      color: #ef4444; font-size: 12px; font-weight: 600;
      font-family: var(--font-body, sans-serif);
      padding: 6px 14px; border-radius: 100px; cursor: pointer;
      transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
    }
    .wish-clear-btn:hover { background: rgba(239,68,68,0.15); transform: scale(1.04); }
    .wish-clear-btn.visible { display: flex; }
    .wish-clear-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

    /* ── pplate-card: hover lift like hero plates ── */
    .pplate-card:hover { 
      border-color:var(--accent); box-shadow:var(--shadow-md); 
      transform:translateY(-6px) rotate(-1deg) scale(1.03); 
      z-index: 50;
    }
    .pplate-card { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s, box-shadow 0.2s; }

    /* Mini plate inside card */
    

    .mini-plate-body { flex:1; display:flex; align-items:center; justify-content:center; padding:5px 6px 3px; }
    .mini-plate-combined { font-family:'Inter',-apple-system,sans-serif; font-size:15px; font-weight:800; color:#111; letter-spacing:2.5px; line-height:1; white-space:nowrap; text-align:center; }
    .mini-plate-state { font-family:var(--font-body); font-size:7px; font-weight:700; color:#444; padding:2px 4px 3px; border-top:1px solid #ddd; background:#f0f0ed; text-align:center; letter-spacing:0.2px; }

    .pplate-info { width:100%; }
    .pplate-price { font-size:13px; font-weight:700; color:var(--accent); text-align:center; }
    .pplate-price-sub { font-size:10px; color:var(--muted); text-align:center; margin-top:1px; }

    /* Show more button */
    .pgroup-more {
      display:flex; align-items:center; justify-content:space-between;
      margin-top:6px;
    }
    .pgroup-count { font-size:12px; color:var(--muted); }
    .btn-more-plates {
      display:inline-flex; align-items:center; gap:6px;
      background:var(--surface); border:1px solid var(--border2);
      border-radius:100px; padding:8px 20px; font-size:12.5px;
      font-weight:600; color:var(--text); cursor:pointer;
      text-decoration:none; transition:all 0.2s;
    }
    .btn-more-plates:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-light); }

    /* ════ MINI PLATE — landscape, tabienpramool style ════ */
    .mini-plate {
      width:100%; border-radius:12px; overflow:hidden; flex-shrink:0;
      background:#fff; border:2.5px solid #ccc;
      box-shadow:0 3px 0 #aaa, 0 6px 18px rgba(0,0,0,0.13);
      display:flex; flex-direction:column; position:relative;
    }
    /* plain plate */
    .mini-plate-body {
      padding:14px 10px 4px;
      display:flex; align-items:center; justify-content:center;
      position:relative; z-index:2;
    }
    .mini-plate-combined {
      font-family:'Sarabun','Inter',-apple-system,sans-serif;
      font-size:22px; font-weight:900; color:#111;
      letter-spacing:1px; line-height:1; text-align:center; white-space:nowrap;
    }
    .mini-plate-state {
      font-family:'Sarabun','Inter',sans-serif;
      font-size:9px; font-weight:700; color:#444;
      padding:3px 6px 7px; text-align:center; letter-spacing:0.3px;
      background:transparent; border-top:none;
      position:relative; z-index:2;
    }
    /* star row */
    .mini-plate-stars {
      position:absolute; top:6px; left:8px; z-index:5;
      font-size:10px; line-height:1; letter-spacing:1px;
      color:#f5c518;
      text-shadow:0 1px 3px rgba(0,0,0,0.3);
      pointer-events:none;
    }

    /* ════ AUCTION plate — sky + city background ════ */
    .mini-plate-auction {
      border:2.5px solid #9898c8;
      box-shadow:0 3px 0 #7878a8, 0 8px 24px rgba(90,70,180,0.35);
    }
    .mini-plate-auction .mini-plate-body  { padding:14px 8px 2px; }
    .mini-plate-auction .mini-plate-combined { color:#1a0060; font-weight:900; text-shadow:0 1px 3px rgba(255,255,255,0.6); }
    .mini-plate-auction .mini-plate-state  { color:#1a1060; padding:2px 6px 7px; }

    /* sky gradient */
    .mini-plate-auction::before {
      content:''; position:absolute; inset:0; z-index:0; pointer-events:none; border-radius:10px;
      background:
        radial-gradient(ellipse 60% 100% at 78% 30%, rgba(255,215,80,0.95) 0%, rgba(255,175,55,0.7) 20%, transparent 52%),
        linear-gradient(168deg,
          #5868b8 0%, #7882d0 14%, #9898e0 26%,
          #c8b8e8 38%, #e8cce0 50%,
          #f8dcb0 65%, #fdecc0 78%, #fff5d8 100%);
    }
    /* city silhouette (Wat Arun + Thai temples skyline) */
    .mini-plate-auction::after {
      content:''; position:absolute; bottom:0; left:0; right:0; height:50%; z-index:1; pointer-events:none;
      background:rgba(72,65,140,0.52);
      -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 90'%3E%3Cpath d='M0,90 L0,60 L5,60 L5,50 L8,50 L8,42 L10,42 L10,35 L11,35 L11,20 L12,20 L12,12 L13,12 L13,20 L14,20 L14,35 L15,35 L15,42 L17,42 L17,50 L20,50 L20,60 L26,60 L26,52 L30,52 L30,44 L34,44 L34,52 L38,52 L38,60 L44,60 L44,50 L48,50 L48,40 L52,40 L52,50 L56,50 L56,60 L64,60 L64,50 L67,50 L67,40 L70,40 L70,30 L71,30 L71,18 L72,18 L72,8 L73,8 L73,18 L74,18 L74,30 L75,30 L75,40 L78,40 L78,50 L81,50 L81,60 L88,60 L88,54 L92,54 L92,46 L96,46 L96,54 L100,54 L100,60 L108,60 L108,52 L112,52 L112,42 L116,42 L116,52 L120,52 L120,60 L128,60 L128,50 L131,50 L131,38 L133,38 L133,26 L134,26 L134,14 L135,14 L135,6 L136,6 L136,14 L137,14 L137,26 L138,26 L138,38 L140,38 L140,50 L143,50 L143,60 L150,60 L150,54 L154,54 L154,46 L158,46 L158,54 L162,54 L162,60 L170,60 L170,52 L174,52 L174,44 L178,44 L178,52 L182,52 L182,60 L190,60 L190,54 L194,54 L194,46 L198,46 L198,38 L200,38 L200,28 L202,28 L202,18 L204,18 L204,10 L205,10 L205,18 L206,18 L206,28 L208,28 L208,38 L210,38 L210,46 L214,46 L214,54 L218,54 L218,60 L226,60 L226,52 L230,52 L230,60 L238,60 L238,50 L242,50 L242,40 L246,40 L246,50 L250,50 L250,60 L258,60 L258,52 L262,52 L262,44 L264,44 L264,34 L266,34 L266,22 L267,22 L267,10 L268,10 L268,4 L269,4 L269,10 L270,10 L270,22 L271,22 L271,34 L273,34 L273,44 L276,44 L276,52 L280,52 L280,60 L288,60 L288,54 L292,54 L292,46 L296,46 L296,54 L300,54 L300,60 L308,60 L308,52 L312,52 L312,42 L316,42 L316,52 L320,52 L320,60 L328,60 L328,50 L332,50 L332,42 L336,42 L336,50 L340,50 L340,60 L348,60 L348,52 L352,52 L352,60 L360,60 L360,52 L363,52 L363,42 L366,42 L366,32 L367,32 L367,20 L368,20 L368,12 L369,12 L369,20 L370,20 L370,32 L371,32 L371,42 L374,42 L374,52 L377,52 L377,60 L384,60 L384,54 L388,54 L388,46 L392,46 L392,54 L396,54 L396,60 L404,60 L404,52 L408,52 L408,44 L412,44 L412,52 L416,52 L416,60 L424,60 L424,52 L428,52 L428,60 L436,60 L436,50 L440,50 L440,40 L444,40 L444,50 L448,50 L448,60 L456,60 L456,52 L460,52 L460,44 L462,44 L462,34 L464,34 L464,24 L465,24 L465,14 L466,14 L466,6 L467,6 L467,14 L468,14 L468,24 L469,24 L469,34 L471,34 L471,44 L474,44 L474,52 L478,52 L478,60 L486,60 L486,54 L490,54 L490,46 L494,46 L494,54 L498,54 L498,60 L506,60 L506,52 L510,52 L510,60 L518,60 L518,50 L522,50 L522,42 L526,42 L526,50 L530,50 L530,60 L538,60 L538,52 L542,52 L542,44 L546,44 L546,52 L550,52 L550,60 L558,60 L558,52 L562,52 L562,44 L566,44 L566,52 L570,52 L570,60 L578,60 L578,52 L582,52 L582,60 L590,60 L590,52 L595,52 L595,44 L600,44 L600,90 Z' fill='black'/%3E%3C/svg%3E");
      mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 90'%3E%3Cpath d='M0,90 L0,60 L5,60 L5,50 L8,50 L8,42 L10,42 L10,35 L11,35 L11,20 L12,20 L12,12 L13,12 L13,20 L14,20 L14,35 L15,35 L15,42 L17,42 L17,50 L20,50 L20,60 L26,60 L26,52 L30,52 L30,44 L34,44 L34,52 L38,52 L38,60 L44,60 L44,50 L48,50 L48,40 L52,40 L52,50 L56,50 L56,60 L64,60 L64,50 L67,50 L67,40 L70,40 L70,30 L71,30 L71,18 L72,18 L72,8 L73,8 L73,18 L74,18 L74,30 L75,30 L75,40 L78,40 L78,50 L81,50 L81,60 L88,60 L88,54 L92,54 L92,46 L96,46 L96,54 L100,54 L100,60 L108,60 L108,52 L112,52 L112,42 L116,42 L116,52 L120,52 L120,60 L128,60 L128,50 L131,50 L131,38 L133,38 L133,26 L134,26 L134,14 L135,14 L135,6 L136,6 L136,14 L137,14 L137,26 L138,26 L138,38 L140,38 L140,50 L143,50 L143,60 L150,60 L150,54 L154,54 L154,46 L158,46 L158,54 L162,54 L162,60 L170,60 L170,52 L174,52 L174,44 L178,44 L178,52 L182,52 L182,60 L190,60 L190,54 L194,54 L194,46 L198,46 L198,38 L200,38 L200,28 L202,28 L202,18 L204,18 L204,10 L205,10 L205,18 L206,18 L206,28 L208,28 L208,38 L210,38 L210,46 L214,46 L214,54 L218,54 L218,60 L226,60 L226,52 L230,52 L230,60 L238,60 L238,50 L242,50 L242,40 L246,40 L246,50 L250,50 L250,60 L258,60 L258,52 L262,52 L262,44 L264,44 L264,34 L266,34 L266,22 L267,22 L267,10 L268,10 L268,4 L269,4 L269,10 L270,10 L270,22 L271,22 L271,34 L273,34 L273,44 L276,44 L276,52 L280,52 L280,60 L288,60 L288,54 L292,54 L292,46 L296,46 L296,54 L300,54 L300,60 L308,60 L308,52 L312,52 L312,42 L316,42 L316,52 L320,52 L320,60 L328,60 L328,50 L332,50 L332,42 L336,42 L336,50 L340,50 L340,60 L348,60 L348,52 L352,52 L352,60 L360,60 L360,52 L363,52 L363,42 L366,42 L366,32 L367,32 L367,20 L368,20 L368,12 L369,12 L369,20 L370,20 L370,32 L371,32 L371,42 L374,42 L374,52 L377,52 L377,60 L384,60 L384,54 L388,54 L388,46 L392,46 L392,54 L396,54 L396,60 L404,60 L404,52 L408,52 L408,44 L412,44 L412,52 L416,52 L416,60 L424,60 L424,52 L428,52 L428,60 L436,60 L436,50 L440,50 L440,40 L444,40 L444,50 L448,50 L448,60 L456,60 L456,52 L460,52 L460,44 L462,44 L462,34 L464,34 L464,24 L465,24 L465,14 L466,14 L466,6 L467,6 L467,14 L468,14 L468,24 L469,24 L469,34 L471,34 L471,44 L474,44 L474,52 L478,52 L478,60 L486,60 L486,54 L490,54 L490,46 L494,46 L494,54 L498,54 L498,60 L506,60 L506,52 L510,52 L510,60 L518,60 L518,50 L522,50 L522,42 L526,42 L526,50 L530,50 L530,60 L538,60 L538,52 L542,52 L542,44 L546,44 L546,52 L550,52 L550,60 L558,60 L558,52 L562,52 L562,44 L566,44 L566,52 L570,52 L570,60 L578,60 L578,52 L582,52 L582,60 L590,60 L590,52 L595,52 L595,44 L600,44 L600,90 Z' fill='black'/%3E%3C/svg%3E");
      -webkit-mask-size:100% 100%; mask-size:100% 100%;
    }

    /* plate wrap */
    .pplate-plate-wrap {
      position:relative; display:flex; flex-direction:column; align-items:stretch; width:100%;
    }
    /* view button */
    .btn-view-plate {
      width:100%; padding:6px 0; border-radius:8px; border:1px solid var(--border2);
      background:var(--surface2); font-size:11px; font-weight:600;
      font-family:var(--font-body); color:var(--muted); cursor:pointer;
      transition:all 0.18s; margin-top:2px;
    }
    .btn-view-plate:hover { background:var(--black); color:#fff; border-color:var(--black); }
    /* ── card meta row ── */
    .card-meta-row {
      display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 6px;
      margin-top: 4px; width: 100%;
    }
    .btn-view-icon, .card-wish-count { position: relative; }
    .btn-view-icon {
      width: 30px; height: 30px; flex-shrink: 0;
      border-radius: 8px; border: 1px solid rgba(0,0,0,0.1);
      background: #f5f5f7; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.18s; color: #888;
    }
    .btn-view-icon svg { width: 14px; height: 14px; }
    .btn-view-icon:hover { background: #111; color: #fff; border-color: #111; }
    .card-wish-count {
      display: flex; flex-direction: row; align-items: center; gap: 2px;
      font-size: 10px; font-weight: 600; color: #888;
      background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.12);
      border-radius: 100px; padding: 3px 7px; height: 22px; cursor: default;
    }
    .card-wish-count span { line-height: 1; }
    .btn-view-icon::after, .card-wish-count::after {
      content: attr(data-tip);
      position: absolute; bottom: calc(100% + 5px); left: 50%;
      transform: translateX(-50%) scale(0.85); transform-origin: bottom center;
      background: #0a0a0a; color: #fff; font-size: 10px; font-weight: 500;
      font-family: var(--font-body, sans-serif); white-space: nowrap;
      padding: 4px 8px; border-radius: 6px; pointer-events: none;
      opacity: 0; transition: opacity 0.15s, transform 0.15s; z-index: 300;
    }
    .btn-view-icon:hover::after, .card-wish-count:hover::after {
      opacity: 1; transform: translateX(-50%) scale(1);
    }

    /* ── card meta row ── */
    .card-meta-row {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      margin-top: 4px; width: 100%;
    }
    .btn-view-icon, .card-wish-count {
      position: relative;
    }
    .btn-view-icon {
      width: 30px; height: 30px; flex-shrink: 0;
      border-radius: 8px; border: 1px solid var(--border2, rgba(0,0,0,0.1));
      background: var(--surface2, #f5f5f7); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.18s; color: var(--muted, #888);
    }
    .btn-view-icon svg { width: 14px; height: 14px; }
    .btn-view-icon:hover { background: var(--black, #111); color: #fff; border-color: var(--black, #111); }
    .card-wish-count {
      display: flex; align-items: center; gap: 2px;
      font-size: 10px; font-weight: 600; color: var(--muted, #888);
      background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.12);
      border-radius: 100px; padding: 3px 7px; height: 22px; cursor: default;
    }
    .card-wish-count span { line-height: 1; }
    /* tooltips */
    .btn-view-icon::after,
    .card-wish-count::after {
      content: attr(data-tip);
      position: absolute; bottom: calc(100% + 5px); left: 50%;
      transform: translateX(-50%) scale(0.85); transform-origin: bottom center;
      background: #0a0a0a; color: #fff; font-size: 10px; font-weight: 500;
      font-family: var(--font-body, sans-serif); white-space: nowrap;
      padding: 4px 8px; border-radius: 6px; pointer-events: none;
      opacity: 0; transition: opacity 0.15s, transform 0.15s; z-index: 20;
    }
    .btn-view-icon:hover::after,
    .card-wish-count:hover::after { opacity: 1; transform: translateX(-50%) scale(1); }

    /* ── btn-buy redesign ── */
    .btn-buy {
      background: #0a0a0a;
      border: none; color: #fff;
      font-size: 12px; font-family: var(--font-body); font-weight: 700;
      width: 100%; height: 36px;
      border-radius: 100px; cursor: pointer;
      transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
      letter-spacing: 0.3px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.25);
      position: relative; overflow: hidden;
    }
    .btn-buy::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #b8952a 0%, #d4a843 100%);
      opacity: 0; transition: opacity 0.2s;
    }
    .btn-buy:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 6px 20px rgba(184,149,42,0.5); }
    .btn-buy:hover::before { opacity: 1; }
    .btn-buy:hover::before { opacity: 1; }
    .btn-buy:active { transform: scale(0.96); }
    .btn-buy span { position: relative; z-index: 1; }

    /* ── plate shake on buy click ── */
    @keyframes plate-shake {
      0%   { transform: rotate(0deg) scale(1); }
      10%  { transform: rotate(-4deg) scale(1.05); }
      25%  { transform: rotate(4deg) scale(1.08); }
      40%  { transform: rotate(-3deg) scale(1.06); }
      55%  { transform: rotate(3deg) scale(1.04); }
      70%  { transform: rotate(-1.5deg) scale(1.02); }
      85%  { transform: rotate(1deg) scale(1.01); }
      100% { transform: rotate(0deg) scale(1); }
    }
    .pplate-card.plate-shaking .mini-plate {
      animation: plate-shake 0.6s cubic-bezier(0.36,0.07,0.19,0.97) both;
    }


    /* ════ MODAL ════ */
    .plate-modal-overlay { position:fixed; inset:0; z-index:1000; background:rgba(0,0,0,0.5); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.25s; }
    .plate-modal-overlay.open { opacity:1; pointer-events:all; }
    .plate-modal { background:#fff; border-radius:20px; width:min(600px,95vw); overflow:hidden; box-shadow:0 32px 80px rgba(0,0,0,0.22); transform:scale(0.94) translateY(12px); transition:transform 0.28s cubic-bezier(0.34,1.56,0.64,1); max-height:92vh; overflow-y:auto; position:relative; }
    .plate-modal-overlay.open .plate-modal { transform:scale(1) translateY(0); }
    .modal-top { display:grid; grid-template-columns:200px 1fr; padding:28px 28px 0; align-items:center; }
    .modal-plate-display { border-radius:12px; overflow:hidden; border:2.5px solid #ccc; box-shadow:0 3px 0 #aaa, 0 6px 18px rgba(0,0,0,0.12); background:#fff; display:flex; flex-direction:column; position:relative; min-height:108px; }
    .modal-plate-display.auction { border-color:#9898c8; box-shadow:0 3px 0 #7878a8, 0 6px 18px rgba(90,70,180,0.3); }
    .modal-plate-display.auction::before { content:''; position:absolute; inset:0; z-index:0; pointer-events:none; background:radial-gradient(ellipse 60% 100% at 78% 28%, rgba(255,215,80,0.9) 0%, rgba(255,175,55,0.65) 20%, transparent 52%), linear-gradient(168deg, #5868b8 0%, #7882d0 14%, #9898e0 26%, #c8b8e8 38%, #e8cce0 50%, #f8dcb0 65%, #fdecc0 78%, #fff5d8 100%); }
    .modal-plate-display.auction::after { content:''; position:absolute; bottom:0; left:0; right:0; height:46%; z-index:1; pointer-events:none; background:rgba(72,65,140,0.5); -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 70'%3E%3Cpath d='M0,70 L0,48 L10,48 L10,30 L12,30 L12,14 L14,14 L14,30 L16,30 L16,48 L50,48 L54,36 L58,22 L60,10 L62,22 L66,36 L70,48 L110,48 L114,36 L118,22 L120,10 L122,22 L126,36 L130,48 L170,48 L174,36 L178,24 L180,14 L182,24 L186,36 L190,48 L230,48 L234,36 L238,22 L240,10 L242,22 L246,36 L250,48 L290,48 L294,36 L298,22 L300,10 L302,22 L306,36 L310,48 L350,48 L354,36 L358,24 L360,14 L362,24 L366,36 L370,48 L410,48 L414,36 L418,24 L420,14 L422,24 L426,36 L430,48 L500,48 L500,70 Z' fill='black'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 70'%3E%3Cpath d='M0,70 L0,48 L10,48 L10,30 L12,30 L12,14 L14,14 L14,30 L16,30 L16,48 L50,48 L54,36 L58,22 L60,10 L62,22 L66,36 L70,48 L110,48 L114,36 L118,22 L120,10 L122,22 L126,36 L130,48 L170,48 L174,36 L178,24 L180,14 L182,24 L186,36 L190,48 L230,48 L234,36 L238,22 L240,10 L242,22 L246,36 L250,48 L290,48 L294,36 L298,22 L300,10 L302,22 L306,36 L310,48 L350,48 L354,36 L358,24 L360,14 L362,24 L366,36 L370,48 L410,48 L414,36 L418,24 L420,14 L422,24 L426,36 L430,48 L500,48 L500,70 Z' fill='black'/%3E%3C/svg%3E"); -webkit-mask-size:100% 100%; mask-size:100% 100%; }
    .mp-stars { position:absolute; top:7px; left:9px; z-index:5; font-size:13px; letter-spacing:1px; pointer-events:none; }
    .mp-num { position:relative; z-index:2; font-family:'Sarabun','Inter',sans-serif; font-size:26px; font-weight:900; color:#180058; letter-spacing:1px; line-height:1; padding:20px 10px 4px; text-align:center; text-shadow:0 1px 3px rgba(255,255,255,0.5); }
    .modal-plate-display.plain .mp-num { color:#111; text-shadow:none; }
    .mp-province { position:relative; z-index:2; font-family:'Sarabun',sans-serif; font-size:10px; font-weight:700; color:#1a1060; text-align:center; padding:2px 8px 10px; }
    .modal-plate-display.plain .mp-province { color:#444; }
    .modal-head-info { padding:0 0 0 22px; }
    .modal-head-title { font-family:'Sarabun','Inter',sans-serif; font-size:26px; font-weight:900; color:#111; margin-bottom:6px; }
    .modal-head-price { font-size:20px; font-weight:700; color:#1a56db; }
    .modal-divider { height:1px; background:rgba(0,0,0,0.08); margin:20px 28px 0; }
    .modal-rows { padding:0 28px 16px; }
    .modal-row { display:flex; align-items:baseline; gap:16px; padding:13px 0; border-bottom:1px solid rgba(0,0,0,0.07); }
    .modal-row:last-child { border-bottom:none; }
    .modal-row-label { font-size:13px; font-weight:700; color:#111; min-width:120px; flex-shrink:0; }
    .modal-row-val { font-size:13px; color:#555; flex:1; }
    .modal-actions { display:grid; grid-template-columns:1fr 1fr; gap:12px; padding:4px 28px 28px; }
    .modal-btn-phone { background:#1a56db; color:#fff; border:none; padding:14px; border-radius:100px; font-size:13px; font-weight:700; font-family:var(--font-body,sans-serif); cursor:pointer; transition:all 0.2s; display:flex; align-items:center; justify-content:center; gap:6px; }
    .modal-btn-phone:hover { background:#1344b8; }
    .modal-btn-line2 { background:#06C755; color:#fff; border:none; padding:14px; border-radius:100px; font-size:13px; font-weight:700; font-family:var(--font-body,sans-serif); cursor:pointer; transition:all 0.2s; display:flex; align-items:center; justify-content:center; gap:6px; }
    .modal-btn-line2:hover { background:#05a849; }
    .modal-close-x { position:absolute; top:14px; right:16px; background:rgba(0,0,0,0.06); border:none; width:32px; height:32px; border-radius:50%; font-size:15px; cursor:pointer; z-index:20; display:flex; align-items:center; justify-content:center; color:#555; }
    .modal-close-x:hover { background:rgba(0,0,0,0.12); }
    @media(max-width:540px) { .modal-top { grid-template-columns:1fr; padding:20px 20px 0; } .modal-head-info { padding:14px 0 0; } .modal-actions { grid-template-columns:1fr; } .modal-rows, .modal-actions { padding-left:20px; padding-right:20px; } }


    
    /* modal plate display (bigger version) */
    /* modal body */
    .modal-stat-val.gold { color:var(--accent); }
    .modal-btn-line:hover { background:#05a849; }
    .modal-btn-close:hover { background:var(--surface); color:var(--text); }


    /* ══ MINI PLATE — landscape (tabienpramool style) ══ */


    /* ══ MINI PLATE — landscape (tabienpramool style) ══ */
    

    /* ══ plate-wrap: full width, no bg (bg handled per plate type) ══ */
    /* ══ card adjustments ══ */
    .pplate-info { width:100%; text-align:center; }
    .pplate-price { font-size:14px; font-weight:700; color:var(--accent); }
    .pplate-price-sub { font-size:10px; color:var(--muted); margin-top:1px; }


    /* ── AUCTION plate graphic background (ป้ายประมูล) ── */
    


    @media(max-width:900px) { .pplate-grid { grid-template-columns:repeat(3,1fr); } }
    @media(max-width:680px) { .pplate-grid { grid-template-columns:repeat(2,1fr); } .province-section { padding:60px 20px; } }

    /* ══ PLATE GALLERY (Apple TV+ style) — back from v1.0 ══ */
    .plate-gallery-section { background:var(--black); position:relative; }
    .plate-gallery-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 80% at 70% 50%,rgba(184,149,42,0.08),transparent 60%); pointer-events:none; z-index:1; }
    .pg-viewport { position:relative; width:100%; height:560px; overflow:hidden; }
    .pg-item { position:absolute; inset:0; opacity:0; transition:opacity 0.9s cubic-bezier(0.645,0.045,0.355,1); background-size:cover; background-position:center; cursor:pointer; }
    .pg-item.active { opacity:1; z-index:2; }
    .pg-item.prev   { opacity:0; z-index:1; }
    .pg-item::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.45) 40%,rgba(0,0,0,0.1) 70%,transparent 100%); z-index:1; }
    .pg-item-inner { position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; justify-content:flex-end; padding:56px 72px; }
    .pg-label { font-family:var(--font-mono); font-size:10px; letter-spacing: 2px; color:rgba(255,255,255,0.5); text-transform:uppercase; margin-bottom:12px; display:flex; align-items:center; gap:10px; }
    .pg-label::before { content:''; width:20px; height:1px; background:var(--accent); }
    .pg-title { font-family:var(--font-body); font-size:clamp(36px,5vw,64px); font-weight:300; line-height:1; letter-spacing:-0.5px; color:#fff; margin-bottom:10px; }
    .pg-title em { font-style:normal; font-weight:200; color:var(--accent); }
    .pg-desc { font-size:14px; color:rgba(255,255,255,0.55); max-width:360px; line-height:1.7; font-weight:300; margin-bottom:28px; }
    .pg-btn { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25); color:#fff; padding:11px 24px; border-radius:100px; font-size:13px; font-family:var(--font-body); font-weight:500; cursor:pointer; transition:all 0.2s; backdrop-filter:blur(10px); width:fit-content; }
    .pg-btn:hover { background:rgba(255,255,255,0.22); border-color:rgba(255,255,255,0.5); }
    .pg-plate-float { position:absolute; right:72px; top:50%; transform:translateY(-50%) translateX(20px); z-index:3; opacity:0; transition:opacity 0.7s 0.3s ease,transform 0.7s 0.3s ease; }
    .pg-item.active .pg-plate-float { opacity:1; transform:translateY(-50%) translateX(0); }
    .pg-plate-display { background:#fff; border:3px solid #bbb; border-radius:8px; min-width:190px; overflow:hidden; box-shadow:0 4px 0 #888,0 16px 60px rgba(0,0,0,0.5); }
    .pg-plate-display .plate-header { background:#c8001a; padding:5px 10px 4px; display:flex; align-items:center; justify-content:center; }
    .pg-plate-display .plate-header-text { font-size:9.5px; color:#fff; font-weight:800; letter-spacing:1px; font-family:var(--font-body); text-transform:uppercase; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:180px; display:block; text-align:center; }
    .pg-plate-display .plate-body { padding:10px 16px 8px; display:flex; align-items:center; justify-content:center; }
    .pg-plate-display .plate-combined { font-family:'Inter',-apple-system,sans-serif; font-size:32px; font-weight:800; color:#111; letter-spacing: 2px; line-height:1; text-align:center; white-space:nowrap; }
    .pg-plate-display .plate-state { font-family:var(--font-body); font-size:10px; font-weight:700; letter-spacing:0.5px; color:#444; padding:4px 8px 6px; border-top:1px solid #ddd; width:100%; text-align:center; background:#f0f0ed; }
    .pg-plate-price { margin-top:12px; text-align:center; font-family:var(--font-mono); font-size:14px; font-weight:700; color:#fff; }
    .pg-controls { position:absolute; top:50%; transform:translateY(-50%); width:100%; display:flex; justify-content:space-between; padding:0 20px; z-index:10; pointer-events:none; }
    .pg-arrow { width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); color:#fff; font-size:18px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all 0.2s; pointer-events:all; backdrop-filter:blur(10px); }
    .pg-arrow:hover { background:rgba(255,255,255,0.25); border-color:rgba(255,255,255,0.5); }
    .pg-dotnav { display:flex; justify-content:center; gap:8px; padding:20px 0; position:relative; z-index:5; background:var(--black); }
    .pg-dot { width:6px; height:6px; border-radius:3px; background:rgba(255,255,255,0.25); cursor:pointer; transition:all 0.3s ease; border:none; }
    .pg-dot.active { width:24px; background:var(--accent); }
    .pg-progress { position:absolute; bottom:0; left:0; height:2px; background:var(--accent); width:0%; z-index:10; transition:width linear; }
    .pg-header { position:relative; z-index:2; padding:64px 72px 40px; display:flex; justify-content:space-between; align-items:flex-end; }
    .pg-header-label { font-family:var(--font-mono); font-size:10px; letter-spacing: 2px; color:var(--accent); text-transform:uppercase; margin-bottom:10px; display:flex; align-items:center; gap:10px; }
    .pg-header-label::before { content:''; width:20px; height:1px; background:var(--accent); }
    .pg-header-title { font-family:var(--font-display); font-size:clamp(32px,4vw,52px); font-weight:300; color:#fff; line-height:1; letter-spacing:-0.5px; }
    .pg-header-title em { font-style:italic; color:var(--accent); }
    .pg-view-all { font-size:13px; color:rgba(255,255,255,0.45); text-decoration:none; font-weight:500; display:flex; align-items:center; gap:6px; transition:color 0.2s; white-space:nowrap; }
    .pg-view-all:hover { color:rgba(255,255,255,0.8); }
    @media(max-width:680px) {
      .pg-viewport { height:420px; } .pg-item-inner { padding:32px 28px; } .pg-plate-float { display:none; }
      .pg-header { padding:40px 28px 24px; flex-direction:column; align-items:flex-start; gap:12px; }
      .pg-controls { display:none; }
    }
    @media(min-width:681px) and (max-width:900px) {
      .pg-plate-float { right:28px; } .pg-item-inner { padding:40px 40px; } .pg-header { padding:48px 40px 28px; }
    }

    .fab-stack{position:fixed;right:20px;bottom:80px;z-index:500;display:flex;flex-direction:column;align-items:center;gap:10px}
    .fab-btn{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;text-decoration:none;border:none;outline:none;transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1),box-shadow 0.2s;position:relative}
    .fab-btn svg{width:22px;height:22px;flex-shrink:0}.fab-line svg{width:34px;height:34px;display:block;margin:auto;fill:#fff}
    .fab-btn:hover{transform:scale(1.12)}
        .fab-scroll-up,.fab-scroll-down{background:#1a1a1a;box-shadow:0 4px 14px rgba(0,0,0,0.45);color:#fff}
    .fab-scroll-up:hover,.fab-scroll-down:hover{background:#2a2a2a;box-shadow:0 6px 20px rgba(0,0,0,0.55)}
    .fab-phone{background:#0d3880;box-shadow:0 4px 14px rgba(13,56,128,0.5);color:#fff}
    .fab-phone:hover{background:#1045a0;box-shadow:0 6px 20px rgba(13,56,128,0.65)}
    .fab-line{background:#06C755;box-shadow:0 4px 20px rgba(6,199,85,0.45),0 2px 8px rgba(0,0,0,0.15)}
    .fab-line:hover{background:#05b84d;box-shadow:0 6px 28px rgba(6,199,85,0.6);transform:scale(1.12) translateY(-2px)}
    .fab-facebook{background:#1877f2;box-shadow:0 4px 14px rgba(24,119,242,0.5);color:#fff}
    .fab-facebook:hover{background:#1464d8;box-shadow:0 6px 20px rgba(24,119,242,0.65);transform:scale(1.12) translateY(-2px)}
    .fab-line-pulse{position:absolute;top:-2px;right:-2px;width:13px;height:13px;border-radius:50%;background:#ff4d4d;border:2px solid #fff;animation:pulse-ring 2s ease infinite}
    .fab-line-pulse::after{content:'';position:absolute;inset:-4px;border-radius:50%;border:2px solid rgba(255,77,77,0.5);animation:pulse-ring 2s ease infinite 0.3s}
    @keyframes pulse-ring{0%{transform:scale(1);opacity:1}70%{transform:scale(1.6);opacity:0}100%{transform:scale(1.6);opacity:0}}
    @keyframes line-fab-shake{0%{transform:translateY(0) scale(1)}15%{transform:translateY(-18px) scale(1.08)}30%{transform:translateY(-10px) scale(1.05)}45%{transform:translateY(-16px) scale(1.07)}60%{transform:translateY(-6px) scale(1.03)}75%{transform:translateY(-12px) scale(1.05)}90%{transform:translateY(-4px) scale(1.02)}100%{transform:translateY(0) scale(1)}}
    @keyframes line-fab-glow{0%{box-shadow:0 4px 20px rgba(6,199,85,0.4),0 2px 8px rgba(0,0,0,0.15)}40%{box-shadow:0 8px 40px rgba(6,199,85,0.8),0 0 0 8px rgba(6,199,85,0.2)}100%{box-shadow:0 4px 20px rgba(6,199,85,0.4),0 2px 8px rgba(0,0,0,0.15)}}
    
    /* ── LINE FAB bounce label ── */
    .fab-line .line-bounce-label {
      position: absolute; right: calc(100% + 8px); top: 50%;
      transform: translateY(-50%) translateX(6px) scale(0.9);
      transform-origin: right center;
      background: #06C755; color: #fff;
      font-size: 11px; font-weight: 700;
      font-family: var(--font-body, sans-serif);
      padding: 5px 11px; border-radius: 100px;
      white-space: nowrap; pointer-events: none;
      opacity: 0; transition: opacity 0.2s, transform 0.2s;
      box-shadow: 0 3px 12px rgba(6,199,85,0.4);
    }
    .fab-line.plate-clicked .line-bounce-label {
      opacity: 1; transform: translateY(-50%) translateX(0) scale(1);
    }
    .line-fab.plate-clicked{animation:line-fab-shake 0.7s cubic-bezier(0.36,0.07,0.19,0.97) both,line-fab-glow 0.7s ease both}
    .fab-line::after{content:'ปรึกษาฟรีผ่าน LINE';position:absolute;right:calc(100% + 10px);top:50%;transform:translateY(-50%) scale(0.85);transform-origin:right center;background:#0a0a0a;color:#fff;font-size:11px;font-weight:500;font-family:var(--font-body,sans-serif);white-space:nowrap;padding:6px 11px;border-radius:7px;pointer-events:none;opacity:0;transition:opacity 0.18s,transform 0.2s cubic-bezier(0.34,1.56,0.64,1)}
    .fab-line:hover::after{opacity:1;transform:translateY(-50%) scale(1)}
    .fab-scroll-up::after{content:'กลับขึ้นด้านบน'}
    .fab-phone::after{content:'โทรหาเรา'}
    .fab-scroll-down::after{content:'เลื่อนลงด้านล่าง'}
    .fab-facebook::after{content:'ติดต่อผ่าน Facebook'}
    .fab-scroll-up::after,.fab-phone::after,.fab-scroll-down::after,.fab-facebook::after{position:absolute;right:calc(100% + 10px);top:50%;transform:translateY(-50%) scale(0.85);transform-origin:right center;background:#0a0a0a;color:#fff;font-size:11px;font-weight:500;font-family:var(--font-body,sans-serif);white-space:nowrap;padding:6px 11px;border-radius:7px;pointer-events:none;opacity:0;transition:opacity 0.18s,transform 0.2s cubic-bezier(0.34,1.56,0.64,1)}
    .fab-scroll-up:hover::after,.fab-phone:hover::after,.fab-scroll-down:hover::after,.fab-facebook:hover::after{opacity:1;transform:translateY(-50%) scale(1)}
    @keyframes btn-spring{0%{transform:scale(1)}20%{transform:scale(0.88)}50%{transform:scale(1.18)}70%{transform:scale(0.95)}85%{transform:scale(1.06)}100%{transform:scale(1)}}
    .btn-springing{animation:btn-spring 0.45s cubic-bezier(0.36,0.07,0.19,0.97) both}
