/* ==========================================================
   GLASSES TO SEE YOU — Site design system
   Bold editorial direction: warm paper, oversized Thai type,
   brand orange, circular "lens" motif from the logo.
   Fonts: Noto Sans Thai (TH) + Poppins (EN accents, numerals)
   ========================================================== */

:root {
  --accent: #D95B43;
  --accent-dark: #B8452F;
  --accent-soft: #FBE4DE;
  --type-scale: 1;

  --ink: #262220;
  --ink-2: #57504B;
  --ink-3: #8A817A;
  --paper: #FFFCF7;
  --cream: #F9EFE2;
  --line: #EBE2D6;
  --white: #FFFFFF;
  --green: #06C755;

  --font-th: 'Noto Sans Thai', sans-serif;
  --font-en: 'Poppins', 'Noto Sans Thai', sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --shadow-md: 0 10px 30px -12px rgba(38, 34, 32, 0.18);
  --shadow-lg: 0 24px 60px -24px rgba(38, 34, 32, 0.28);

  --max-w: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-th);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

::selection { background: var(--accent); color: var(--white); }

/* ==========================================================
   TYPE
   ========================================================== */
.display { font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: calc(clamp(30px, 3.6vw, 46px) * var(--type-scale));
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 14px;
  text-wrap: pretty;
}

.section-title em { font-style: normal; color: var(--accent); }

.section-lede { font-size: 17px; color: var(--ink-2); max-width: 560px; margin-top: 12px; text-wrap: pretty; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-th);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:active { transform: scale(0.97); }
.btn i { font-size: 20px; }

.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 10px 24px -10px var(--accent); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s, gap 0.2s;
}

.text-link:hover { color: var(--accent); gap: 12px; }

/* ==========================================================
   TOPBAR + NAVBAR
   ========================================================== */
.topbar { background: var(--ink); color: rgba(255, 252, 247, 0.75); font-size: 13px; }

.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 38px; }

.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item i { font-size: 15px; color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: var(--white); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-logo img { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); }

.nav-logo-name { font-family: var(--font-en); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }
.nav-logo-name span { color: var(--accent); }
.nav-logo-sub { font-family: var(--font-en); font-size: 9.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-3); }

.nav-links { display: flex; align-items: center; gap: 6px; }

.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-2); padding: 9px 14px; border-radius: var(--r-pill); transition: background 0.2s, color 0.2s; }
.nav-links a:hover { background: var(--cream); color: var(--ink); }
.nav-links a.active { background: var(--ink); color: var(--paper); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: background 0.2s, transform 0.15s;
}
.nav-line-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-line-btn i { font-size: 18px; }

.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--ink); width: 44px; height: 44px; }

/* ==========================================================
   PAGE HERO (inner pages)
   ========================================================== */
.page-hero {
  background: var(--cream);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border: 26px solid var(--accent-soft);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: calc(clamp(38px, 5vw, 64px) * var(--type-scale));
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 16px;
  max-width: 760px;
  text-wrap: pretty;
}

.page-hero h1 em { font-style: normal; color: var(--accent); }

.page-hero p { font-size: 18px; color: var(--ink-2); max-width: 600px; margin-top: 16px; text-wrap: pretty; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 13px; }

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark .section-title { color: var(--paper); }
.section-dark .eyebrow { color: rgba(255, 252, 247, 0.6); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }

.section-head-center { text-align: center; margin-bottom: 56px; }
.section-head-center .section-lede { margin-left: auto; margin-right: auto; }

/* ==========================================================
   IMAGE PLACEHOLDERS
   ========================================================== */
.ph {
  position: relative;
  background: repeating-linear-gradient(-45deg, #F4E9DA 0px, #F4E9DA 14px, #FBF4E9 14px, #FBF4E9 28px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ph::after {
  content: attr(data-label);
  font-family: 'SF Mono', 'Cascadia Mono', Consolas, monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #B49A7C;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 12px;
  white-space: pre;
  text-align: center;
  line-height: 1.6;
}

.ph-circle { border-radius: 50%; }
.ph-card { border-radius: var(--r-lg); }

/* ==========================================================
   LENS MOTIF
   ========================================================== */
.lens-pair { display: inline-flex; align-items: center; }
.lens-pair i { width: 38px; height: 38px; border: 4px solid currentColor; border-radius: 50%; display: block; }
.lens-pair i + i { margin-left: 10px; }
.lens-pair::before { content: none; }

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; padding: 18px 0; white-space: nowrap; }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee-scroll 28s linear infinite;
  padding-right: 40px;
}

.marquee-item { display: inline-flex; align-items: center; gap: 40px; font-size: 16px; font-weight: 600; }
.marquee-item .en { font-family: var(--font-en); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.marquee-item .dot { width: 10px; height: 10px; border: 2.5px solid var(--accent); border-radius: 50%; display: inline-block; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==========================================================
   FILTER CHIPS
   ========================================================== */
.chip { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: 10px 22px; font-family: var(--font-th); font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: all 0.2s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ==========================================================
   CARDS — product
   ========================================================== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.product-thumb { aspect-ratio: 1; border-radius: calc(var(--r-lg) - 8px); margin-bottom: 18px; position: relative; }

.product-thumb .badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--accent); color: var(--white); font-family: var(--font-en); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--r-pill); }
.product-thumb .badge.badge-dark { background: var(--ink); }

.product-body { padding: 0 8px 10px; display: flex; flex-direction: column; gap: 2px; flex: 1; }

.product-brand { font-family: var(--font-en); font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }

.product-name { font-size: 17px; font-weight: 700; color: var(--ink); }

.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }

.product-price { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-en); }
.product-price .now { font-size: 19px; font-weight: 700; color: var(--ink); }
.product-price .was { font-size: 13px; color: var(--ink-3); text-decoration: line-through; }

.product-add { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--ink); background: transparent; color: var(--ink); font-size: 19px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s; }
.product-add:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: scale(1.08); }

/* ==========================================================
   CARDS — article
   ========================================================== */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.article-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.article-thumb { aspect-ratio: 16 / 9; border: none; border-bottom: 1px solid var(--line); }
.article-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.article-tag { align-self: flex-start; font-size: 12.5px; font-weight: 600; color: var(--accent-dark); background: var(--accent-soft); padding: 4px 14px; border-radius: var(--r-pill); }

.article-card h3 { font-size: 19px; font-weight: 700; line-height: 1.45; text-wrap: pretty; }
.article-card p { font-size: 14.5px; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.article-meta { margin-top: auto; padding-top: 10px; font-family: var(--font-en); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }

/* ==========================================================
   CARDS — review
   ========================================================== */
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 14px; }

.review-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }

.review-quote { font-size: 16px; line-height: 1.75; color: var(--ink); text-wrap: pretty; }

.review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-weight: 600; font-size: 16px; color: var(--accent-dark); }

.review-name { font-size: 14.5px; font-weight: 700; }
.review-src { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band {
  background: var(--accent);
  border-radius: var(--r-lg);
  padding: 64px 64px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band::before { content: ''; position: absolute; right: 180px; top: -90px; width: 280px; height: 280px; border: 30px solid rgba(255,255,255,0.14); border-radius: 50%; }
.cta-band::after { content: ''; position: absolute; right: -60px; bottom: -120px; width: 300px; height: 300px; border: 30px solid rgba(255,255,255,0.1); border-radius: 50%; }

.cta-band h2 { font-size: calc(clamp(28px, 3.2vw, 42px) * var(--type-scale)); font-weight: 800; line-height: 1.3; text-wrap: pretty; }
.cta-band p { font-size: 17px; opacity: 0.92; margin-top: 8px; }

.cta-band .btn-white { background: var(--white); color: var(--ink); flex-shrink: 0; position: relative; z-index: 1; }
.cta-band .btn-white:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--ink); color: rgba(255, 252, 247, 0.65); padding: 72px 0 0; margin-top: 96px; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }

.footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand-row img { width: 56px; height: 56px; border-radius: 50%; background: var(--white); }

.footer-wordmark { font-family: var(--font-en); font-size: 19px; font-weight: 600; color: var(--white); line-height: 1.25; }
.footer-wordmark span { color: var(--accent); }

.footer-tagline { font-size: 15px; line-height: 1.8; max-width: 320px; }
.footer-tagline em { display: block; margin-top: 12px; color: var(--accent); font-weight: 600; font-style: normal; }

.footer h4 { font-family: var(--font-en); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--accent); }
.footer-col a i { font-size: 17px; color: var(--accent); }

.footer-bottom { border-top: 1px solid rgba(255, 252, 247, 0.12); padding: 22px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: center; gap: 28px; font-size: 13px; color: rgba(255, 252, 247, 0.4); flex-wrap: wrap; }

.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,252,247,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(255,252,247,0.6); transition: background 0.2s, color 0.2s, transform 0.15s; }
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

/* ==========================================================
   LINE FLOAT
   ========================================================== */
.line-float { position: fixed; bottom: 26px; right: 26px; z-index: 200; display: flex; align-items: center; gap: 10px; }

.line-float-label { background: var(--white); border: 1px solid var(--line); padding: 8px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-md); }

.line-float-btn { width: 58px; height: 58px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 30px; box-shadow: 0 12px 28px -8px rgba(6,199,85,0.5); transition: transform 0.2s; }
.line-float-btn:hover { transform: scale(1.1) rotate(-6deg); }

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 20px 22px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    animation: navDrop 0.22s ease;
  }

  .nav-links.is-open a { padding: 13px 16px; font-size: 16px; }
  .topbar-right .topbar-item:last-child { display: none; }
}

@media (max-width: 768px) {
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
  .nav-cta .nav-line-btn span { display: none; }
  .nav-cta .nav-line-btn { padding: 11px 14px; }
  .section { padding: 60px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
  .page-hero { padding: 52px 0 46px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .article-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; }
  .line-float-label { display: none; }
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* ==========================================================
   WORDPRESS SPECIFICS
   ========================================================== */

/* Nav active state via WP menu classes */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a,
.nav-links .current-page-ancestor > a {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
}

/* Entry content typography */
.entry-content h2 { font-size: calc(clamp(22px,2.8vw,34px) * var(--type-scale)); font-weight: 700; margin: 44px 0 16px; letter-spacing: -0.01em; }
.entry-content h3 { font-size: calc(clamp(18px,2.2vw,26px) * var(--type-scale)); font-weight: 700; margin: 34px 0 12px; }
.entry-content h4 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.entry-content p  { font-size: 17px; line-height: 1.9; color: var(--ink-2); margin-bottom: 22px; text-wrap: pretty; }
.entry-content ul, .entry-content ol { margin: 0 0 22px 28px; }
.entry-content li { font-size: 16.5px; line-height: 1.8; color: var(--ink-2); margin-bottom: 8px; }
.entry-content a  { color: var(--accent); text-decoration: underline; }
.entry-content a:hover { color: var(--accent-dark); }
.entry-content strong { color: var(--ink); font-weight: 700; }
.entry-content blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; margin: 28px 0; background: var(--cream); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-style: normal; }
.entry-content blockquote p { color: var(--ink); margin: 0; font-size: 16.5px; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 28px; border-radius: var(--r-sm); overflow: hidden; }
.entry-content th { background: var(--ink); color: var(--paper); padding: 13px 16px; text-align: left; font-size: 13.5px; font-family: var(--font-en); letter-spacing: 0.06em; }
.entry-content td { padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--ink-2); }
.entry-content tr:nth-child(even) td { background: var(--cream); }
.entry-content hr { border: none; border-top: 2px solid var(--line); margin: 40px 0; }
.entry-content img { border-radius: var(--r-md); margin: 8px 0 24px; }

/* WordPress alignment helpers */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--ink-3); text-align: center; margin-top: 8px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 56px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 46px; height: 46px; border-radius: var(--r-pill); border: 1.5px solid var(--line); font-family: var(--font-en); font-weight: 600; font-size: 15px; color: var(--ink-2); padding: 0 14px; transition: all 0.2s; }
.pagination .page-numbers:hover { border-color: var(--ink); color: var(--ink); background: var(--cream); }
.pagination .page-numbers.current { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* WooCommerce */
.woocommerce ul.products { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.woocommerce ul.products li.product { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px; transition: transform .25s, box-shadow .25s; }
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 17px; font-weight: 700; color: var(--ink); padding: 0; margin: 12px 0 6px; }
.woocommerce ul.products li.product .price { font-family: var(--font-en); font-size: 18px; font-weight: 700; color: var(--ink) !important; }
.woocommerce ul.products li.product .price del { color: var(--ink-3) !important; font-size: 13px; }
.woocommerce ul.products li.product a.button { background: var(--accent) !important; color: #fff !important; border-radius: var(--r-pill) !important; font-family: var(--font-th) !important; font-weight: 600 !important; border: none !important; padding: 10px 20px !important; font-size: 14px !important; margin-top: 12px; }
.woocommerce ul.products li.product a.button:hover { background: var(--accent-dark) !important; }
@media (max-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* Search form */
.search-form { display: flex; max-width: 480px; margin: 0 auto; }
.search-form input[type="search"] { flex: 1; padding: 13px 20px; border: 1.5px solid var(--line); border-right: none; border-radius: var(--r-pill) 0 0 var(--r-pill); font-family: var(--font-th); font-size: 15px; background: var(--white); color: var(--ink); outline: none; }
.search-form input[type="search"]:focus { border-color: var(--ink); }
.search-form button { background: var(--ink); color: var(--paper); border: none; padding: 13px 24px; border-radius: 0 var(--r-pill) var(--r-pill) 0; font-size: 18px; cursor: pointer; transition: background .2s; }
.search-form button:hover { background: var(--accent); }
