/* ═══════════════════════════════════════════════════
   CLUB HOUSE COFFEE – main.css
   v1.0.0
═══════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --g-dark:    #1a4a2e;
  --g-mid:     #2d6a4f;
  --g-light:   #52b788;
  --g-pale:    #d8f3dc;
  --yellow:    #f5a800;
  --yellow-h:  #e09300;
  --cream:     #f5f5e8;
  --white:     #ffffff;
  --text:      #1b1b1b;
  --text-mid:  #555;
  --shadow:    0 6px 28px rgba(26,74,46,.14);
  --r:         14px;
  --r-sm:      8px;
  --container: 1160px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ─── HELPERS ─── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 40px;
}
.screen-reader-text {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.screen-reader-text:focus {
  left: 0; top: 0; width: auto; height: auto;
  background: var(--yellow); color: var(--g-dark);
  padding: 8px 16px; font-weight: 700; z-index: 9999;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 14px; letter-spacing: .4px;
  cursor: pointer; border: none; transition: all .2s;
  white-space: nowrap;
}
.btn-hero {
  background: var(--yellow); color: var(--g-dark);
  box-shadow: 0 6px 24px rgba(245,168,0,.5);
}
.btn-hero:hover { background: var(--yellow-h); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,168,0,.55); }
.btn-buy, .btn-dat, .btn-combo {
  background: var(--yellow); color: var(--g-dark);
  box-shadow: 0 3px 12px rgba(245,168,0,.35);
}
.btn-buy:hover, .btn-dat:hover, .btn-combo:hover {
  background: var(--yellow-h); transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--g-dark);
  border: 2px solid var(--g-mid);
}
.btn-outline:hover { background: var(--g-dark); color: var(--white); border-color: var(--g-dark); }

/* ═══════════════════════════════════
   TOPBAR
═══════════════════════════════════ */
.topbar {
  background: var(--g-mid);
  padding: 7px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.topbar-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--yellow);
}
.topbar-tagline { letter-spacing: .3px; }
.topbar-socials { display: flex; gap: 10px; }
.topbar-socials a { color: rgba(255,255,255,.7); transition: color .2s; }
.topbar-socials a:hover { color: var(--yellow); }

/* ═══════════════════════════════════
   HEADER / NAV
═══════════════════════════════════ */
.site-header {
  background: var(--g-dark);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.site-logo { display: flex; align-items: center; }
.logo-text {
  display: flex; flex-direction: column; align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 14px; border-radius: 4px; line-height: 1.2;
}
.logo-main {
  font-weight: 800; letter-spacing: 3px; font-size: 15px;
  color: var(--white); text-transform: uppercase;
}
.logo-sub {
  font-size: 8.5px; letter-spacing: 5.5px; text-transform: uppercase;
  color: var(--g-light);
}
/* WP custom logo */
.site-logo .custom-logo { height: 44px; width: auto; }

.primary-nav { display: flex; }
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu li { display: flex; align-items: center; }
.nav-menu > li + li::before {
  content: '·'; color: rgba(255,255,255,.3); font-size: 18px;
  margin: 0 4px; line-height: 1;
}
.nav-menu a {
  color: rgba(255,255,255,.82); font-size: 13.5px; font-weight: 500;
  padding: 6px 11px; border-radius: 5px; transition: color .2s, background .2s;
  position: relative;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--yellow); }
.nav-menu .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--g-dark); min-width: 180px;
  border-radius: var(--r-sm); box-shadow: 0 12px 40px rgba(0,0,0,.3);
  padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .25s;
}
.nav-menu li:hover > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu .sub-menu a {
  display: block; padding: 9px 18px; font-size: 13px;
  color: rgba(255,255,255,.78); border-radius: 0;
}
.nav-menu .sub-menu a:hover { color: var(--yellow); background: rgba(255,255,255,.06); }
.nav-menu li { position: relative; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cart {
  position: relative; color: rgba(255,255,255,.82);
  display: flex; align-items: center; transition: color .2s;
}
.nav-cart:hover { color: var(--yellow); }
.cart-count {
  position: absolute; top: -7px; right: -8px;
  background: var(--yellow); color: var(--g-dark);
  font-size: 10px; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-dat { padding: 9px 22px; font-size: 13px; }

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

/* Mobile nav */
.mobile-nav {
  display: none; background: var(--g-dark); padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu a {
  display: block; padding: 12px 0;
  color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500;
}
.mobile-menu a:hover { color: var(--yellow); }

/* ═══════════════════════════════════
   HERO SECTION
═══════════════════════════════════ */
.hero-section {
  position: relative; min-height: 420px;
  background: linear-gradient(130deg,#0f3320 0%,#1e5c38 35%,#2d7a52 60%,#3a8c60 100%);
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 75% 55%,rgba(255,255,255,.07) 0%,transparent 70%),
    radial-gradient(circle at 15% 90%,rgba(82,183,136,.25) 0%,transparent 45%);
  pointer-events: none;
}
.hero-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 40px; padding-bottom: 80px;
  position: relative; z-index: 2; width: 100%;
}
.hero-content { max-width: 460px; }
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 52px; line-height: 1.1;
  color: var(--white);
  text-shadow: 0 3px 24px rgba(0,0,0,.3);
  margin-bottom: 16px;
}
.hero-heading em { font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,.78); font-size: 14.5px; font-weight: 300;
  letter-spacing: .3px; margin-bottom: 32px; line-height: 1.65;
}
.hero-visual {
  flex-shrink: 0;
  animation: heroFadeIn .9s .2s ease both;
}
.hero-svg { width: 480px; height: 292px; display: block; }

@keyframes heroFadeIn {
  from { opacity:0; transform:translateX(30px); }
  to   { opacity:1; transform:translateX(0); }
}

/* Steam CSS animation */
.steam {
  animation: steamRise 3s ease-in-out infinite;
  transform-origin: bottom center;
}
.steam-1 { animation-delay: 0s; }
.steam-2 { animation-delay: .6s; }
.steam-3 { animation-delay: 1.2s; }
@keyframes steamRise {
  0%, 100% { opacity: .6; transform: translateY(0) scaleX(1); }
  50% { opacity: .15; transform: translateY(-8px) scaleX(1.1); }
}

/* Wave at bottom of hero */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ═══════════════════════════════════
   SECTION COMMON
═══════════════════════════════════ */
.sec-head { text-align: center; margin-bottom: 40px; }
.orn {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 8px;
}
.orn-line {
  height: 1.5px; width: 56px;
  background: linear-gradient(90deg, transparent, var(--g-mid));
}
.orn-line--right { background: linear-gradient(270deg, transparent, var(--g-mid)); }
.sec-head h2 {
  font-family: 'Playfair Display', serif; font-size: 31px;
  color: var(--g-dark); letter-spacing: .4px;
}
.sec-head p {
  color: #999; font-size: 12.5px; letter-spacing: 1.2px;
  text-transform: uppercase; margin-top: 5px;
}
.sec-more { text-align: center; margin-top: 40px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   PRODUCTS
═══════════════════════════════════ */
.sec-products {
  padding: 64px 0 52px;
  background: linear-gradient(180deg,#eef7f0 0%,var(--cream) 100%);
}
.prod-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.prod-card {
  background: var(--white); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s; cursor: pointer;
}
.prod-card:hover { transform: translateY(-7px); box-shadow: 0 18px 50px rgba(26,74,46,.2); }
.prod-img, .prod-img--demo {
  width: 100%; height: 168px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg,#f2faf5,#e8f5ea);
  position: relative; overflow: hidden;
}
.prod-photo { width: 100%; height: 100%; object-fit: cover; }
.prod-demo-icon { font-size: 72px; }
.prod-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #f5faf7;
}
.prod-badge {
  position: absolute; top: 10px; left: 10px;
  background: #e63946; color: white;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 3px 9px; border-radius: 20px;
}
.prod-body { padding: 16px 14px; text-align: center; }
.prod-body h3, .prod-body h3 a {
  font-size: 14.5px; font-weight: 700; color: var(--g-dark);
  margin-bottom: 6px; line-height: 1.3;
}
.prod-body h3 a:hover { color: var(--g-mid); }
.prod-price {
  font-weight: 800; font-size: 16px; color: var(--g-dark); margin-bottom: 14px;
}
.prod-price s, .prod-price del { font-weight: 400; font-size: 12px; color: #bbb; margin-right: 3px; }
/* WooCommerce price */
.woocommerce-Price-amount { font-size: 15px; }
.price ins { text-decoration: none; }
/* WooCommerce add-to-cart button */
.prod-card .add_to_cart_button,
.prod-card .single_add_to_cart_button {
  display: block; width: 100%;
  background: var(--yellow); color: var(--g-dark); border: none;
  padding: 10px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 13px; cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: inherit;
}
.prod-card .add_to_cart_button:hover { background: var(--yellow-h); transform: scale(1.02); }
.btn-buy { width: 100%; }

/* ═══════════════════════════════════
   COMBO BANNER
═══════════════════════════════════ */
.sec-combo { padding: 0 0 8px; }
.combo-card {
  background: linear-gradient(108deg,#fef9e2 0%,#fdf3b0 45%,#fef4c0 100%);
  border-radius: 20px; padding: 44px 52px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(245,168,0,.22);
  border: 1.5px solid rgba(245,168,0,.22);
}
.combo-card::after {
  content: ''; position: absolute; top:-100px; right:-100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle,rgba(245,168,0,.12),transparent 60%);
  pointer-events: none;
}
.combo-left { z-index: 2; }
.combo-script {
  font-family: 'Dancing Script', cursive; font-size: 27px;
  color: var(--g-mid); font-weight: 700;
  display: flex; align-items: center; gap: 14px; margin-bottom: 8px;
}
.combo-script::before, .combo-script::after {
  content: ''; display: inline-block;
  width: 48px; height: 1.5px; background: var(--yellow);
}
.combo-brush-wrap { position: relative; display: inline-block; margin-bottom: 8px; }
.combo-brush-bg {
  position: absolute; bottom: 2px; left: -8px; right: -8px; height: 65%;
  background: #2d6a4f; border-radius: 3px; transform: skew(-2deg); z-index: 0;
}
.combo-heading {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 34px; color: var(--white); line-height: 1.15; padding: 2px 0;
}
.combo-price-row { font-size: 15px; color: var(--text); margin: 10px 0 24px; }
.combo-price-num {
  font-size: 46px; font-weight: 900; color: var(--yellow);
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 12px rgba(245,168,0,.35);
  margin-left: 6px; vertical-align: middle;
}
.combo-right { z-index: 2; flex-shrink: 0; }
.combo-svg { width: 280px; height: 180px; }

/* ═══════════════════════════════════
   FARM SECTION
═══════════════════════════════════ */
.sec-farm {
  padding: 68px 0 60px;
  text-align: center;
  background: linear-gradient(180deg,var(--cream) 0%,#ecf7ef 100%);
}
.sec-farm .sec-head h2 {
  font-family: 'Playfair Display', serif; font-size: 34px; color: var(--g-dark);
}
.farm-visual {
  border-radius: 20px; overflow: hidden;
  max-width: 900px; margin: 0 auto 36px;
  box-shadow: 0 20px 60px rgba(26,74,46,.22);
}
.farm-svg { width: 100%; display: block; }
.farm-visual img { width: 100%; height: 280px; object-fit: cover; }

.farm-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  max-width: 800px; margin-inline: auto;
}
.farm-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); padding: 11px 20px;
  border-radius: 40px; box-shadow: var(--shadow);
  font-size: 13.5px; font-weight: 600; color: var(--g-dark);
  transition: transform .2s;
}
.farm-badge:hover { transform: translateY(-2px); }
.badge-icon { font-size: 20px; }

/* ═══════════════════════════════════
   BLOG SECTION
═══════════════════════════════════ */
.sec-blog { padding: 64px 0 68px; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 42px rgba(26,74,46,.18); }
.blog-img-link { display: block; height: 180px; overflow: hidden; }
.blog-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-img-link:hover .blog-thumb { transform: scale(1.05); }
.blog-body { padding: 20px; }
.blog-date { font-size: 12px; color: #999; margin-bottom: 8px; display: block; }
.blog-body h3 { font-size: 15px; font-weight: 700; color: var(--g-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-body h3 a:hover { color: var(--g-mid); }
.blog-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.55; margin-bottom: 14px; }
.blog-more { font-size: 13px; font-weight: 700; color: var(--g-mid); transition: color .2s; }
.blog-more:hover { color: var(--yellow); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer { background: var(--g-dark); color: rgba(255,255,255,.72); }
.footer-top {
  display: grid; grid-template-columns: 240px repeat(3,1fr) 200px;
  gap: 36px; padding-top: 52px; padding-bottom: 44px;
}
.footer-brand .footer-logo-text {
  display: flex; flex-direction: column; align-items: flex-start;
  border: 1px solid rgba(255,255,255,.18); padding: 6px 16px;
  border-radius: 4px; margin-bottom: 14px; width: fit-content;
}
.f-logo-main { font-weight: 800; letter-spacing: 2px; font-size: 14px; color: var(--white); }
.f-logo-sub { font-size: 8px; letter-spacing: 5px; color: var(--g-light); }
.footer-desc { font-size: 13px; line-height: 1.6; max-width: 200px; }
.footer-col h4 {
  color: var(--white); font-size: 12.5px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.62); font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-col .widget { margin-bottom: 0; }
.footer-col .widget-title {
  color: var(--white); font-size: 12.5px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-socials { display: flex; gap: 10px; margin-bottom: 14px; }
.soc-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,.8);
  transition: background .2s, transform .15s, color .2s;
}
.soc-btn:hover { background: var(--yellow); color: var(--g-dark); transform: translateY(-2px); }
.footer-hotline { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-hotline span { margin-right: 4px; }
.footer-hotline a { color: var(--yellow); font-weight: 700; }
.footer-hotline a:hover { text-decoration: underline; }

.footer-bottom { background: rgba(0,0,0,.2); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; padding-bottom: 18px;
  font-size: 12px; color: rgba(255,255,255,.38);
}
.footer-copy a { color: rgba(255,255,255,.5); }
.footer-copy a:hover { color: var(--yellow); }
.footer-powered a { color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════
   INNER PAGES
═══════════════════════════════════ */
.page-hero {
  background: linear-gradient(120deg, var(--g-dark), var(--g-mid));
  padding: 52px 0; text-align: center; color: var(--white);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: 40px; margin-bottom: 10px;
}
.page-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,.65); }
.page-hero .breadcrumb a { color: var(--yellow); }

.page-content { padding: 60px 0 80px; }
.page-content .container { display: grid; grid-template-columns: 1fr 280px; gap: 40px; }
.page-content.no-sidebar .container { grid-template-columns: 1fr; }
.entry-content { min-width: 0; }
.entry-content h1,.entry-content h2,.entry-content h3 {
  font-family: 'Playfair Display', serif; color: var(--g-dark); margin: 1.4em 0 .6em;
}
.entry-content p { margin-bottom: 1em; line-height: 1.7; }
.entry-content img { border-radius: var(--r-sm); margin: 1.2em 0; }
.entry-content ul, .entry-content ol { margin: .8em 0 .8em 1.6em; }
.entry-content li { margin-bottom: .4em; }
.entry-content a { color: var(--g-mid); text-decoration: underline; }
.entry-content a:hover { color: var(--yellow-h); }
.entry-content blockquote {
  border-left: 4px solid var(--yellow); padding: 12px 20px;
  background: var(--g-pale); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.2em 0; font-style: italic;
}

/* Sidebar */
.widget-area .widget {
  background: var(--white); border-radius: var(--r);
  padding: 20px; box-shadow: var(--shadow); margin-bottom: 24px;
}
.widget-area .widget-title {
  font-family: 'Playfair Display', serif; font-size: 16px; color: var(--g-dark);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--g-pale);
}
.widget-area ul li { padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.widget-area ul li a { color: var(--text-mid); font-size: 13.5px; }
.widget-area ul li a:hover { color: var(--g-mid); }

/* ─── WooCommerce shop page ─── */
.chc-woo-wrap { padding: 52px 0; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.woocommerce ul.products li.product {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,74,46,.18); }
.woocommerce ul.products li.product a img { width: 100%; height: 200px; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 14px 14px 4px; font-size: 14.5px; font-weight: 700; }
.woocommerce ul.products li.product .price { padding: 0 14px 12px; color: var(--g-dark); font-weight: 700; }
.woocommerce ul.products li.product .button {
  margin: 0 14px 14px; display: block; text-align: center;
  background: var(--yellow); color: var(--g-dark);
  border-radius: var(--r-sm); padding: 10px; font-weight: 700;
  transition: background .2s;
}
.woocommerce ul.products li.product .button:hover { background: var(--yellow-h); }

/* ═══════════════════════════════════
   ARCHIVE / BLOG
═══════════════════════════════════ */
.archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }

/* ═══════════════════════════════════
   COMMENTS
═══════════════════════════════════ */
.comments-area { margin-top: 48px; padding-top: 40px; border-top: 1px solid #e8e8e8; }
.comments-title, .comment-reply-title {
  font-family: 'Playfair Display', serif; font-size: 22px;
  color: var(--g-dark); margin-bottom: 20px;
}
.comment-form input, .comment-form textarea {
  width: 100%; border: 1.5px solid #e0e0e0; border-radius: var(--r-sm);
  padding: 10px 14px; font-size: 14px; transition: border-color .2s;
  background: var(--white);
}
.comment-form input:focus, .comment-form textarea:focus {
  outline: none; border-color: var(--g-light);
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form .submit {
  background: var(--yellow); color: var(--g-dark); border: none;
  padding: 11px 28px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: background .2s;
}
.comment-form .submit:hover { background: var(--yellow-h); }

/* ═══════════════════════════════════
   404
═══════════════════════════════════ */
.error-404 { text-align: center; padding: 80px 0; }
.error-404 h1 { font-family:'Playfair Display',serif; font-size:120px; color:var(--g-pale); line-height:1; }
.error-404 h2 { font-size:28px; color:var(--g-dark); margin-bottom:16px; }
.error-404 p { color:var(--text-mid); margin-bottom:28px; }

/* ═══════════════════════════════════
   PAGINATION
═══════════════════════════════════ */
.pagination, .woocommerce-pagination { text-align:center; margin:40px 0; }
.pagination .page-numbers, .woocommerce-pagination .page-numbers {
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:var(--r-sm);
  font-size:14px; font-weight:600; color:var(--g-dark);
  background:var(--white); box-shadow:var(--shadow);
  margin:0 3px; transition:all .2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background:var(--g-dark); color:var(--white);
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width:1200px) {
  .container { padding-inline: 28px; }
  .footer-top { grid-template-columns: 200px repeat(3,1fr); gap:24px; }
  .footer-connect { grid-column: 1/-1; }
}
@media (max-width:960px) {
  .hero-heading { font-size: 40px; }
  .hero-svg { width: 360px; height: 220px; }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .archive-grid { grid-template-columns: repeat(2,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: repeat(2,1fr); }
  .page-content .container { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  .container { padding-inline: 20px; }
  .topbar-tagline { display:none; }
  .primary-nav { display:none; }
  .hamburger { display:flex; }
  .hero-inner { flex-direction:column; text-align:center; padding-top:48px; padding-bottom:96px; }
  .hero-visual { margin-top:24px; }
  .hero-svg { width:90vw; max-width:380px; height:auto; }
  .hero-heading { font-size:34px; }
  .combo-card { flex-direction:column; padding:28px 24px; text-align:center; gap:20px; }
  .combo-script { justify-content:center; }
  .combo-heading { font-size:26px; }
  .combo-right { display:none; }
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-heading { font-size: 28px; }
}
