/*
Theme Name: Vass Design
Theme URI: https://chimeneasvassdesign.com.mx
Author: Vass Design
Description: Tema personalizado para Chimeneas Vass Design — bioetanol elegante para tu hogar.
Version: 1.0
License: Proprietary
Text Domain: vass
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:          #C8111A;
  --red-dark:     #a50d15;
  --dark:         #1a1a1a;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #5a5a5a;
  --text-light:   #8a8a8a;
  --border-light: #e8e8e8;
  --bg-light:     #f8f8f6;
  --bg-warm:      #faf9f7;
  --radius:       10px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.13);
  --transition:   .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'PT Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-dark);
}

.h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.lead {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 32px;
}

.section-center { text-align: center; }
.section-center .lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-light);
}
.btn-outline:hover { border-color: var(--text-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-dark);
}
.site-logo span { color: var(--red); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.current { color: var(--text-dark); background: var(--bg-light); }
.site-nav a.current-menu-item { color: var(--red); }

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

.header-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 9px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
}
.header-wa:hover { border-color: #25d366; color: #1a7a3a; }
.header-wa svg { flex-shrink: 0; }

.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
  transition: var(--transition);
}
.header-cart:hover { border-color: var(--text-dark); }
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================================
   TOPBAR (optional promo bar)
   ============================================================ */
.topbar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}
.topbar a { color: #fff; text-decoration: underline; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,17,26,.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}
.trust-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  border-right: 1px solid var(--border-light);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.cats-section { padding: 80px 0; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cat-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,17,26,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.cat-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.cat-card p {
  font-size: 12px;
  color: var(--text-mid);
}

/* ============================================================
   FEATURED PRODUCTS (WooCommerce)
   ============================================================ */
.products-section { background: var(--bg-light); padding: 80px 0; }

/* WooCommerce product grid override */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-light);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  padding: 14px 16px 6px !important;
  line-height: 1.35 !important;
}

.woocommerce ul.products li.product .price {
  padding: 0 16px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--red) !important;
  display: block;
}
.woocommerce ul.products li.product .price del {
  font-size: 12px !important;
  color: var(--text-light) !important;
  margin-right: 4px;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: block !important;
  margin: 12px 16px 16px !important;
  padding: 11px 16px !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 7px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-align: center !important;
  border: none !important;
  transition: var(--transition) !important;
  width: calc(100% - 32px) !important;
  box-sizing: border-box !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--red-dark) !important;
}

/* ============================================================
   BENEFITS / RAZONES
   ============================================================ */
.benefits-section { padding: 80px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,17,26,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   VIDEO SECTION (como 1,2,3)
   ============================================================ */
.como-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 72px 32px 56px;
  text-align: center;
}
.como-lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 44px;
}
.como-video-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  line-height: 0;
}
.como-video { width: 100%; display: block; border-radius: 14px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comp-wrap {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.comp-inner { max-width: 1140px; margin: 0 auto; padding: 80px 32px; }
.comp-tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comp-tbl {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 680px;
}
.comp-tbl th, .comp-tbl td {
  padding: 13px 15px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  font-family: inherit;
}
.comp-col-vass {
  background: rgba(200,17,26,.04);
  border-left: 2px solid var(--red) !important;
  border-right: 2px solid var(--red) !important;
}
thead .comp-col-vass { background: rgba(200,17,26,.07); border-top: 2px solid var(--red); }
tbody tr:last-child .comp-col-vass { border-bottom: 2px solid var(--red) !important; }
.comp-ico.ok { color: #1a9e55; }
.comp-ico.mid { color: #b07a00; }
.comp-ico.no { color: var(--red); }
.comp-nota {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 16px 20px;
  border-left: 3px solid var(--red);
  background: rgba(200,17,26,.03);
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-section { background: var(--bg-light); padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body { padding: 20px; }
.blog-meta {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.blog-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}
.blog-read-more:hover { text-decoration: underline; }

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,17,26,.25) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner .inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 56px 0 32px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.footer-logo span { color: var(--red); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s ease;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; }

/* ============================================================
   WOOCOMMERCE — SHOP PAGE
   ============================================================ */
.shop-page { padding: 48px 0 80px; }
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.shop-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}
.shop-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--red); color: var(--red); background: rgba(200,17,26,.04); }

.woocommerce-result-count { font-size: 14px; color: var(--text-mid); }
.woocommerce-ordering select {
  padding: 9px 14px;
  border-radius: 7px;
  border: 1.5px solid var(--border-light);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
}

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT
   ============================================================ */
.single-product-wrap { padding: 48px 0 80px; }
.product-gallery-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.product-main-image {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
}
.product-main-image img { width: 100%; }
.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.product-thumbnails img {
  border-radius: 6px;
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  height: 72px;
  object-fit: cover;
}
.product-thumbnails img:hover,
.product-thumbnails img.active { border-color: var(--red); }

.product-info { position: sticky; top: 100px; }
.product-category-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.product-info h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.product-price {
  font-size: 30px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
}
.product-price-note {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 4px;
}
.product-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.btn-cart {
  background: var(--red);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  width: 100%;
  text-align: center;
  transition: var(--transition);
}
.btn-cart:hover { background: var(--red-dark); }
.btn-wa-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9px;
  border: 1.5px solid #25d366;
  color: #1a7a3a;
  font-size: 15px;
  font-weight: 700;
  background: #f0fff4;
  transition: var(--transition);
  width: 100%;
}
.btn-wa-product:hover { background: #d4f5de; }

.product-trust-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
}
.product-trust-item svg { color: var(--red); flex-shrink: 0; }

/* ============================================================
   SINGLE POST / BLOG
   ============================================================ */
.post-page { padding: 48px 0 80px; }
.post-inner { max-width: 740px; margin: 0 auto; padding: 0 24px; }
.post-header { margin-bottom: 40px; }
.post-cats { margin-bottom: 12px; }
.post-cats a {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(200,17,26,.3);
  border-radius: 4px;
  padding: 3px 8px;
  margin-right: 6px;
}
.post-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.post-meta {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.post-featured-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}
.post-featured-image img { width: 100%; height: 400px; object-fit: cover; }

/* Post content typography */
.post-content { font-size: 16px; line-height: 1.8; color: var(--text-mid); }
.post-content h2 { font-size: 26px; font-weight: 700; color: var(--text-dark); margin: 40px 0 16px; line-height: 1.25; }
.post-content h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 4px solid var(--red);
  padding: 16px 24px;
  background: rgba(200,17,26,.03);
  margin: 28px 0;
  font-size: 17px;
  color: var(--text-dark);
  font-style: italic;
}
.post-content img { border-radius: 10px; margin: 28px 0; }
.post-content a { color: var(--red); text-decoration: underline; }
.post-content strong { color: var(--text-dark); font-weight: 700; }

/* ============================================================
   ARCHIVE / BLOG LIST
   ============================================================ */
.archive-page { padding: 48px 0 80px; }
.archive-header { margin-bottom: 44px; }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text-mid); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs span { color: var(--text-light); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border-light);
  color: var(--text-mid);
  transition: var(--transition);
}
.pagination a:hover,
.pagination .current {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200,17,26,.04);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { padding: 80px 0; background: var(--bg-light); }
.faq-list { max-width: 740px; margin: 44px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
}
.faq-q span { font-size: 20px; transition: transform .25s; flex-shrink: 0; color: var(--red); }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-32 { margin-top: 32px; }
.mt-44 { margin-top: 44px; }
.text-center { text-align: center; }
.text-red { color: var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .product-gallery-wrap { grid-template-columns: 1fr; }
  .product-info { position: static; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-wa { display: none; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .benefits-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-item { padding: 14px 18px; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0; }
  .cta-banner { padding: 56px 0; }
}

@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card { padding: 20px 14px; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
}
