/*
Theme Name:  FirePro Chile
Theme URI:   https://firepro.cl
Author:      FirePro Chile
Description: Tema profesional para equipamiento de bomberos y emergencias. Catálogo con sistema de cotización.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GPL v2 or later
Text Domain: firepro
*/

/* ================================================================
   VARIABLES GLOBALES
================================================================ */
:root {
  --red:       #C1272D;
  --red-dark:  #8B0000;
  --yellow:    #F5A623;
  --dark:      #0D0D0D;
  --dark2:     #141414;
  --dark3:     #1C1C1C;
  --mid:       #2A2A2A;
  --steel:     #3A3F4B;
  --muted:     #7A8090;
  --light:     #E8E8E8;
  --white:     #FFFFFF;
  --font-head: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max-w:     1200px;
  --radius:    4px;
  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ================================================================
   TYPOGRAPHY
================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 0.95;
  letter-spacing: 0.5px;
  color: var(--white);
}
h1 { font-size: clamp(48px, 7vw, 100px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: 22px; font-family: var(--font-cond); font-weight: 700; }
p  { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* ================================================================
   LAYOUT UTILITIES
================================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.text-center { text-align: center; }

/* ================================================================
   SECTION LABELS
================================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title { margin-bottom: 16px; }
.section-desc  { font-size: 17px; max-width: 520px; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--white); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193,39,45,0.2);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(13,13,13,0.99); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 48px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-hex {
  width: 38px;
  height: 38px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-text strong {
  display: block;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.logo-text span {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.current-menu-item { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-quote-btn {
  position: relative;
  background: var(--mid);
  border: 1px solid var(--steel);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.cart-quote-btn:hover { border-color: var(--red); }
.cart-qty-badge {
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 890;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ================================================================
   HERO
================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.75) 55%, rgba(193,39,45,0.12) 100%),
    var(--hero-bg-url, url('')) center/cover no-repeat;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 48px 80px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--red); }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--red); }
.hero-subtitle {
  font-family: var(--font-cond);
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.4;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
}
.stat-num sup { color: var(--red); font-size: 32px; }
.stat-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ================================================================
   TICKER
================================================================ */
.ticker-bar { background: var(--red); overflow: hidden; white-space: nowrap; padding: 13px 0; }
.ticker-track { display: inline-flex; animation: scroll-ticker 35s linear infinite; }
.ticker-item {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 48px;
}
.ticker-item::after { content: '◆'; margin-left: 48px; opacity: 0.5; }
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   CATEGORIES SECTION
================================================================ */
.categories-section { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.04); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  text-decoration: none;
  background: var(--dark3);
  transition: transform var(--transition);
}
.cat-card:hover { transform: scale(1.02); z-index: 2; }
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition), filter 0.4s;
  filter: grayscale(30%);
}
.cat-card:hover img { transform: scale(1.08); filter: grayscale(0%); }
.cat-card-body { position: relative; z-index: 2; }
.cat-num { font-family: var(--font-head); font-size: 11px; letter-spacing: 3px; color: var(--red); margin-bottom: 4px; }
.cat-name { font-family: var(--font-cond); font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 4px; }
.cat-qty  { font-size: 12px; color: var(--muted); }
.cat-arrow {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ================================================================
   WHY US SECTION
================================================================ */
.why-section { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(20%); }
.why-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--red);
  width: 160px; height: 160px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.why-badge-num { font-family: var(--font-head); font-size: 56px; color: white; line-height: 1; }
.why-badge-label { font-family: var(--font-cond); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.why-features { display: flex; flex-direction: column; margin-top: 40px; }
.why-feature {
  display: flex; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.why-feature:last-child { border-bottom: none; }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(193,39,45,0.1);
  border: 1px solid rgba(193,39,45,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  border-radius: var(--radius);
}
.why-feat-title { font-family: var(--font-cond); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-feat-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ================================================================
   PRODUCTS GRID
================================================================ */
.products-section { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.04); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.product-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.3s;
}
.product-card:hover { border-color: rgba(193,39,45,0.4); }
.product-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark3);
}
.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition), filter 0.3s;
  filter: grayscale(15%);
}
.product-card:hover .product-thumb img { transform: scale(1.07); filter: grayscale(0%); }
.product-badge-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: white;
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product-hover-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; gap: 1px;
  transform: translateY(100%);
  transition: transform 0.3s var(--transition);
}
.product-card:hover .product-hover-actions { transform: translateY(0); }
.ph-btn {
  flex: 1; padding: 12px;
  border: none;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ph-btn:hover { opacity: 0.85; }
.ph-add  { background: var(--red); color: white; }
.ph-view { background: rgba(26,26,26,0.96); color: var(--light); border-top: 1px solid rgba(255,255,255,0.08); }
.product-meta { padding: 20px; }
.product-cat-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 6px; }
.product-name { font-family: var(--font-cond); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 6px; }
.product-excerpt { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ================================================================
   SINGLE PRODUCT PAGE
================================================================ */
.product-single-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-top: 120px; }
.product-gallery { position: sticky; top: 100px; }
.gallery-main { aspect-ratio: 1; background: var(--dark3); overflow: hidden; margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumbs img { width: 80px; height: 80px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.gallery-thumbs img.active,
.gallery-thumbs img:hover { border-color: var(--red); }
.product-info-panel { padding-top: 16px; }
.product-cat-breadcrumb { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 12px; }
.product-title { font-family: var(--font-head); font-size: clamp(36px, 4vw, 56px); line-height: 1; color: var(--white); margin-bottom: 20px; }
.product-short-desc { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.product-specs { border: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.spec-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.06); }
.spec-row:last-child { border-bottom: none; }
.spec-key, .spec-val { padding: 12px 16px; font-size: 14px; }
.spec-key { background: rgba(255,255,255,0.03); color: var(--muted); font-weight: 600; }
.spec-val { color: var(--white); }
.add-to-quote-btn {
  width: 100%;
  padding: 18px;
  background: var(--red);
  color: white;
  border: none;
  font-family: var(--font-cond);
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.add-to-quote-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.product-tabs { margin-top: 64px; border-top: 1px solid rgba(255,255,255,0.08); }
.tabs-nav { display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tab-btn {
  padding: 16px 28px;
  background: none; border: none;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active { color: var(--white); border-color: var(--red); }
.tab-panel { display: none; padding: 32px 0; }
.tab-panel.active { display: block; }
.related-products { margin-top: 80px; padding-top: 64px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ================================================================
   QUOTE CART PAGE
================================================================ */
.quote-cart-page { padding-top: 120px; }
.quote-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.quote-table th {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.quote-table td { padding: 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }
.quote-table tr:last-child td { border-bottom: none; }
.qt-product { display: flex; align-items: center; gap: 16px; }
.qt-img { width: 64px; height: 64px; object-fit: cover; background: var(--dark3); flex-shrink: 0; }
.qt-name { font-family: var(--font-cond); font-size: 17px; font-weight: 700; color: var(--white); }
.qty-control { display: flex; align-items: center; gap: 0; }
.qty-btn {
  width: 32px; height: 32px;
  background: var(--mid);
  border: 1px solid var(--steel);
  color: var(--white);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--red); border-color: var(--red); }
.qty-input {
  width: 48px; height: 32px;
  background: var(--dark2);
  border: 1px solid var(--steel);
  border-left: none; border-right: none;
  color: var(--white);
  text-align: center;
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
}
.remove-btn { background: none; border: none; color: var(--muted); font-size: 20px; cursor: pointer; transition: color 0.2s; }
.remove-btn:hover { color: var(--red); }
.quote-cart-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; flex-wrap: wrap; gap: 24px; }
.cart-summary { font-family: var(--font-cond); font-size: 20px; font-weight: 700; color: var(--white); }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty-icon { font-size: 64px; margin-bottom: 24px; }

/* ================================================================
   QUOTE FORM PAGE
================================================================ */
.quote-form-page { padding-top: 120px; }
.quote-form-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-label .required { color: var(--red); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--red); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--steel); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { background-image: url("data:image/svg+xml,..."); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.privacy-check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.privacy-check input { margin-top: 3px; accent-color: var(--red); flex-shrink: 0; }
.privacy-check a { color: var(--red); text-decoration: underline; }
.quote-products-panel { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 28px; border-radius: var(--radius); position: sticky; top: 100px; }
.qp-title { font-family: var(--font-cond); font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 1px; margin-bottom: 20px; }
.qp-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.qp-item:last-child { border-bottom: none; }
.qp-name { font-size: 14px; color: var(--light); }
.qp-qty { font-family: var(--font-cond); font-size: 14px; font-weight: 700; color: var(--red); }
.submit-btn {
  width: 100%; padding: 18px;
  background: var(--red); color: white; border: none;
  font-family: var(--font-cond);
  font-size: 16px; letter-spacing: 2px; font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 32px;
  transition: background 0.2s, transform 0.15s;
}
.submit-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.form-success { background: rgba(37,197,94,0.1); border: 1px solid rgba(37,197,94,0.3); padding: 24px; border-radius: var(--radius); text-align: center; display: none; }
.form-success h3 { font-family: var(--font-cond); color: #25C55E; margin-bottom: 8px; font-size: 24px; }

/* ================================================================
   BLOG
================================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.blog-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.04); overflow: hidden; text-decoration: none; display: block; transition: border-color 0.3s; }
.blog-card:hover { border-color: rgba(193,39,45,0.3); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: grayscale(25%); transition: filter 0.4s, transform 0.5s var(--transition); display: block; }
.blog-card:hover .blog-card-img { filter: grayscale(0%); transform: scale(1.04); }
.blog-card-body { padding: 28px; }
.blog-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 12px; }
.blog-cat-tag { font-family: var(--font-cond); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-weight: 700; }
.blog-date { font-size: 12px; color: var(--muted); }
.blog-card-title { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-cond); font-size: 12px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; color: var(--red); }

/* Single post */
.post-content { max-width: 760px; margin: 0 auto; padding: 120px 24px 80px; }
.post-content h1 { font-size: clamp(36px, 4vw, 60px); margin-bottom: 24px; }
.post-content .entry-content { font-size: 17px; line-height: 1.8; color: var(--muted); }
.post-content .entry-content h2 { font-size: 32px; color: var(--white); margin: 48px 0 16px; }
.post-content .entry-content h3 { font-size: 24px; color: var(--white); margin: 32px 0 12px; }
.post-content .entry-content p  { margin-bottom: 20px; }
.post-content .entry-content ul, .post-content .entry-content ol { margin: 0 0 20px 24px; }
.post-content .entry-content li { margin-bottom: 8px; }
.post-cta { background: var(--dark2); border: 1px solid rgba(193,39,45,0.2); padding: 40px; text-align: center; margin: 48px 0; border-radius: var(--radius); }
.post-cta h3 { font-family: var(--font-cond); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 12px; }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-hero { background: var(--dark2); padding: 160px 0 80px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.value-card { background: var(--dark2); padding: 40px 32px; border: 1px solid rgba(255,255,255,0.04); }
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-title { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.about-numbers { background: var(--red); }
.about-numbers .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.about-stat { padding: 48px 32px; border-right: 1px solid rgba(255,255,255,0.15); text-align: center; }
.about-stat:last-child { border-right: none; }
.about-stat-num { font-family: var(--font-head); font-size: 64px; color: white; line-height: 1; }
.about-stat-label { font-family: var(--font-cond); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; background: var(--dark2); padding: 24px; border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); }
.ci-icon { font-size: 24px; flex-shrink: 0; }
.ci-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.ci-value { font-family: var(--font-cond); font-size: 18px; font-weight: 700; color: var(--white); }
.ci-value a { color: inherit; text-decoration: none; }
.ci-value a:hover { color: var(--red); }
.map-embed { width: 100%; height: 320px; border: none; filter: grayscale(80%) invert(90%) contrast(90%); border-radius: var(--radius); margin-top: 24px; }

/* ================================================================
   CTA BAND
================================================================ */
.cta-band { background: var(--red); }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 80px 48px; max-width: var(--max-w); margin: 0 auto; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(32px, 4vw, 60px); color: white; line-height: 0.95; }
.cta-band p { color: rgba(255,255,255,0.75); margin-top: 12px; font-size: 16px; }

/* ================================================================
   BREADCRUMBS
================================================================ */
.breadcrumb { padding: 100px 0 12px; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; flex-wrap: wrap; }
.breadcrumb-list li { font-size: 13px; color: var(--muted); }
.breadcrumb-list li a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-list li a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--steel); font-size: 11px; }
.breadcrumb-current { color: var(--light) !important; }

/* ================================================================
   NOTIFICATIONS
================================================================ */
.fp-notification {
  position: fixed;
  top: 88px; right: 24px;
  z-index: 850;
  background: var(--dark2);
  border: 1px solid rgba(193,39,45,0.5);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  max-width: 300px;
  border-radius: var(--radius);
  transform: translateX(120%);
  transition: transform 0.4s var(--transition);
}
.fp-notification.show { transform: translateX(0); }
.fp-notif-title { font-family: var(--font-cond); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.fp-notif-sub { font-size: 13px; color: var(--muted); }

/* ================================================================
   WHATSAPP FLOAT
================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-brand-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 20px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-cond); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ================================================================
   WOOCOMMERCE OVERRIDES
================================================================ */
.woocommerce-breadcrumb { display: none !important; }
.woocommerce .products { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2px !important; }
.woocommerce ul.products li.product { border: 1px solid rgba(255,255,255,0.04) !important; background: var(--dark) !important; padding: 0 !important; margin: 0 !important; }
.woocommerce ul.products li.product .price { display: none !important; }
.woocommerce .woocommerce-loop-product__title { font-family: var(--font-cond) !important; font-size: 18px !important; font-weight: 700 !important; color: var(--white) !important; padding: 0 20px 4px !important; }
.woocommerce ul.products li.product a img { width: 100% !important; height: auto !important; aspect-ratio: 1 !important; object-fit: cover !important; }
.woocommerce ul.products li.product .button { display: none !important; }
.yith-wcqv-button { display: none !important; }

/* Hide WooCommerce page header defaults */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { display: none !important; }

/* ================================================================
   PAGE INNER HEADER
================================================================ */
.page-hero {
  background: var(--dark2);
  padding: 140px 48px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(48px, 6vw, 96px); line-height: 0.92; color: var(--white); }
.page-hero p { margin-top: 16px; max-width: 600px; font-size: 18px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .header-inner { padding: 0 24px; }
  .main-nav { display: none; }
  .hamburger { display: block; }
  .container { padding: 0 24px; }
  .grid-2, .why-grid, .contact-grid, .quote-form-grid, .product-single-wrap { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .about-numbers .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-numbers .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .header-actions .btn-primary { display: none; }
  .section-pad { padding: 64px 0; }
}
