/* ============================================
   AutoParts Pro Main Stylesheet
   Compiled from HTML design drafts
   ============================================ */

/* ====== CSS VARIABLES ====== */
:root {
  --primary: #0D2137;
  --primary-light: #1A3D6D;
  --accent: #E8440E;
  --accent-hover: #CC3A0C;
  --accent-light: rgba(232,68,14,0.1);
  --dark: #0B1929;
  --dark-2: #132238;
  --gray-bg: #F7F8FA;
  --gray-card: #FFFFFF;
  --text-primary: #1A2332;
  --text-secondary: #5A6A7E;
  --text: #1A2332;
  --text-light: #8E9BAD;
  --white: #FFFFFF;
  --border: #E2E6EC;
  --shadow: 0 4px 24px rgba(11,25,41,0.07);
  --shadow-hover: 0 12px 36px rgba(11,25,41,0.13);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --max-width: 1280px;
  --sidebar-width: 280px;
  --success: #10B981;
  --warning: #F59E0B;
  --oem-green: #059669;
  --heading-color: var(--text-primary);
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageLoad 0.6s ease-out;
}
@keyframes pageLoad { from { opacity: 0; } to { opacity: 1; } }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: 80px 0; }
.icon { width: 1em; height: 1em; vertical-align: -0.125em; pointer-events: none; }

/* ====== TYPOGRAPHY ====== */
.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.accent-line, .yellow-line {
  display: inline-block;
  border-bottom: 4px solid var(--accent);
  padding-bottom: 4px;
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary-light);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-outline-dark:hover {
  background: var(--primary-light);
  color: var(--white);
}

/* ====== TOP BAR ====== */
.topbar {
  background: var(--dark);
  color: var(--text-light);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-left a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left a:hover { color: var(--accent); }
.lang-switch { display: flex; gap: 2px; }
.lang-switch a {
  padding: 4px 10px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
}
.lang-switch a:hover,
.lang-switch a.active {
  background: var(--accent);
  color: var(--dark);
}

/* ====== HEADER / NAVIGATION ====== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(11,25,41,0.05);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--dark);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  font-weight: 900;
}
.logo span { color: var(--accent); }
.logo-img { height: 48px; width: auto; max-width: 240px; object-fit: contain; }
.footer-brand .logo-img { height: 40px; max-width: 180px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 60%; }
.nav-menu a:hover { color: var(--primary-light); }
.nav-cta .btn-primary { padding: 10px 24px; font-size: 13px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ====== PAGE HERO (Sub-pages) ====== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--dark) 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 200%;
  background: rgba(232,68,14,0.04);
  transform: rotate(15deg);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 13px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 12px; }
.breadcrumb .current { color: var(--accent); font-size: 13px; font-weight: 600; }
.page-hero h1 { font-size: 36px; color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; }

/* ====== LAYOUT: Sidebar + Content ====== */
.main-layout,
.blog-layout,
.article-layout {
  display: flex;
  gap: 40px;
  padding: 40px 0;
}
.main-layout .sidebar,
.blog-layout .sidebar,
.article-layout .sidebar {
  width: 280px;
  flex-shrink: 0;
  align-self: flex-start;
}
.main-layout .content-area,
.blog-layout .content-area {
  flex: 1;
  min-width: 0;
}
.article-main {
  flex: 1;
  min-width: 0;
}

/* ====== SIDEBAR ====== */
.sidebar-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
}
.sidebar-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--primary-light);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-title .icon { width: 16px; height: 16px; color: var(--white); }

/* Sidebar Category List */
.sidebar-category-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
.sidebar-category-list li {
  border-bottom: 1px solid var(--border);
}
.sidebar-category-list li:last-child { border-bottom: none; }
.sidebar-category-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-category-list a:hover,
.sidebar-category-list a.active {
  background: rgba(232,68,14,0.06);
  color: var(--primary-light);
  border-left-color: var(--accent);
  padding-left: 24px;
}
.sidebar-category-list a .icon { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-category-list a.active .icon { color: var(--accent); }
.sidebar-category-list .count {
  margin-left: auto;
  background: var(--gray-bg);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 24px;
  text-align: center;
}
.sidebar-category-list a.active .count {
  background: var(--accent);
  color: var(--dark);
}

/* Sidebar Filter */
.sidebar-filter-list { padding: 12px 20px; }
.filter-group { margin-bottom: 16px; }
.filter-group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.filter-option input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.filter-option label {
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-option .f-count {
  color: var(--text-light);
  font-size: 12px;
}

/* Sidebar Contact */
.sidebar-contact {
  padding: 20px;
  text-align: center;
}
.sidebar-contact h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
}
.sidebar-contact p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sidebar-contact .btn-primary {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 10px 16px;
}
.sidebar-contact .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #25D366;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.sidebar-contact .whatsapp-btn:hover { background: #128C7E; }
.sidebar-contact .whatsapp-btn .icon { width: 16px; height: 16px; }

/* Sidebar Popular Posts */
.sidebar-popular { padding: 8px 0; }
.popular-item {
  display: flex;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
}
.popular-item:last-child { border-bottom: none; }
.popular-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popular-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-thumb i { width: 24px; height: 24px; opacity: 0.3; }
.popular-info h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.popular-info h4 a { color: var(--dark); }
.popular-info h4 a:hover { color: var(--accent); }
.popular-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* ====== TOOLBAR (Sort/Count) ====== */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--gray-bg);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-light);
}
.toolbar strong { color: var(--dark); }
.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  background: var(--white);
  cursor: pointer;
}

/* ====== CATEGORY TABS (Blog) ====== */
.category-tabs {
  padding: 16px 0 0;
}
.category-tabs .container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cat-tab {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.cat-tab:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.cat-tab.active {
  background: var(--accent);
  color: var(--dark);
}

/* ====== PRODUCT / POST GRID ====== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ====== BOTTOM CTA ====== */
.bottom-cta {
  background: var(--dark);
  padding: 48px 0;
  margin-top: 40px;
}
.bottom-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bottom-cta h2 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.bottom-cta h2 span { color: var(--accent); }
.bottom-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

/* ====== PAGE CONTENT ====== */
.page-content {
  padding: 48px 0;
}
.page-content h2 {
  font-size: 28px;
  color: var(--dark);
  margin: 40px 0 24px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

/* ====== STATS ROW (About page) ====== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--gray-bg);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}
.stat-card .number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-light);
  font-family: 'Montserrat', sans-serif;
}
.stat-card .label {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ====== VALUES GRID (About page) ====== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0 40px;
}
.value-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.value-card i {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ====== CONTACT GRID (Contact page) ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-bg);
  border-radius: 8px;
  margin-bottom: 16px;
}
.contact-info-card .icon-box {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .icon-box i {
  width: 24px;
  height: 24px;
  color: var(--dark);
}
.contact-info-card h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ====== CATALOG GRID (Catalog page) ====== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.catalog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.catalog-card-icon {
  height: 160px;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-card-icon i {
  width: 56px;
  height: 56px;
  color: var(--text-light);
}
.catalog-card-body {
  padding: 24px;
}
.catalog-card-body h3 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 6px;
}
.catalog-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.catalog-card-body .btn-primary {
  padding: 10px 20px;
  font-size: 12px;
  width: 100%;
  justify-content: center;
}

/* ====== ARTICLE LAYOUT (Single post) ====== */
.article-header {
  margin-bottom: 32px;
}
.article-header h1 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-light);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-item i { width: 14px; height: 14px; }
.article-body {
  padding: 32px 0;
}
.article-body h2 {
  font-size: 24px;
  color: var(--dark);
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
}
.article-body h3 {
  font-size: 20px;
  color: var(--dark);
  margin: 24px 0 12px;
}
.article-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.article-body ul,
.article-body ol {
  margin: 16px 0;
  padding-left: 24px;
}
.article-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-bg);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ====== ARTICLE CTA BOX ====== */
.article-cta {
  background: var(--gray-bg);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 32px;
  margin: 32px 0;
  text-align: center;
}
.article-cta h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 12px;
}
.article-cta p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ====== RELATED GRID (Posts/Products) ====== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.r-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.r-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.r-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-bg);
}
.r-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.r-card:hover .r-card-img img {
  transform: scale(1.05);
}
.r-card-body {
  padding: 16px;
}
.r-card-body h4 {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.r-card-body h4 a { color: var(--dark); }
.r-card-body h4 a:hover { color: var(--accent); }
.r-card-body span {
  font-size: 12px;
  color: var(--text-light);
}

/* ====== RELATED PRODUCTS SECTION ====== */
.related-products {
  padding: 40px 0;
  background: var(--gray-bg);
}
.related-products h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}
.related-products h2 span { color: var(--accent); }

/* ====== SPECS TABLE (Article) ====== */
.specs {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.specs td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 14px;
}
.specs td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 40%;
  background: var(--gray-bg);
}

/* ====== HERO BANNER (Homepage) ====== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(13,33,55,0.85) 0%, rgba(26,26,26,0.75) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.88) 0%, rgba(26,26,26,0.70) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 200%;
  background: rgba(232,68,14,0.05);
  transform: rotate(15deg);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-content { flex: 1; max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(232,68,14,0.15);
  border: 1px solid rgba(232,68,14,0.3);
  border-radius: 30px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s ease-out 0.2s both;
}
.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
  animation: heroFadeUp 0.8s ease-out 0.35s both;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: heroFadeUp 0.8s ease-out 0.5s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease-out 0.65s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: heroFadeUp 0.8s ease-out 0.8s both;
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--accent);
  display: block;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-image {
  flex: 1;
  max-width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeRight 1s ease-out 0.4s both;
  position: relative;
}
.hero-image-showcase {
  position: relative;
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.hero-image-showcase::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232,68,14,0.3), transparent 50%, rgba(13,33,55,0.3));
  z-index: -1;
}
.hero-image-showcase img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.hero-image-badges {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-image-badge {
  padding: 6px 14px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-image-badge i { width: 12px; height: 12px; }
.hero-image-badge.yellow {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  text-align: center;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
}
.hero-image-placeholder i { width: 48px; height: 48px; opacity: 0.4; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ====== PRODUCT CATEGORIES ====== */
.categories { background: var(--gray-bg); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.category-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(232,68,14,0.15) 0%, rgba(13,33,55,0.15) 100%);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover::after { opacity: 1; }
.category-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  border-bottom: 3px solid var(--accent);
  flex-direction: column;
  gap: 8px;
  transition: transform 0.4s ease;
}
.category-card:hover .category-img { transform: scale(1.05); }
.category-img i { width: 40px; height: 40px; color: var(--text-light); }
.category-info {
  padding: 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.category-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.category-info p { font-size: 12px; color: var(--text-secondary); }
.category-info .view-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  transition: var(--transition);
}
.category-card:hover .view-link { color: var(--accent); }
.view-link i { width: 14px; height: 14px; }

/* ====== WHY CHOOSE US ====== */
.why-us { background: var(--white); }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(1);
  transition: var(--transition);
}
.advantage-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.advantage-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(232,68,14,0.15);
  position: absolute;
  top: 12px;
  right: 20px;
}
.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(232,68,14,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-icon i { width: 28px; height: 28px; color: var(--accent-hover); }
.advantage-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.advantage-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ====== HOT PRODUCTS ====== */
.products { background: var(--gray-bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
a.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.product-card:hover {
  color: inherit;
}
a.product-card h3 {
  color: var(--heading-color);
}
a.product-card h3:hover {
  color: var(--primary);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-img i { width: 36px; height: 36px; }
.product-card-img::after {
  content: 'Get Quote';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.product-card:hover 
.product-info { padding: 20px; }
.product-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(13,33,55,0.08);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 10px;
}
.product-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}
.product-specs { display: flex; gap: 12px; flex-wrap: wrap; }
.spec-item {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.spec-item strong { color: var(--text-primary); font-weight: 600; }
.spec-item i { width: 14px; height: 14px; }

/* ====== CATALOG CTA ====== */
.catalog-cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.catalog-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 200%;
  background: rgba(232,68,14,0.03);
  transform: rotate(15deg);
}
.catalog-cta .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.catalog-content { flex: 1; }
.catalog-content h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
}
.catalog-content h2 span { color: var(--accent); }
.catalog-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}
.catalog-icon {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  background: rgba(232,68,14,0.08);
  border: 2px dashed rgba(232,68,14,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-icon i { width: 60px; height: 60px; color: var(--accent); opacity: 0.6; }

/* ====== BLOG ====== */
.blog { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card.featured { grid-row: span 2; }
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img { transform: scale(1.03); }
.blog-img i { width: 32px; height: 32px; }
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card.featured .blog-img { aspect-ratio: 16/10; }
.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-category {
  padding: 4px 10px;
  background: rgba(232,68,14,0.1);
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}
.blog-date {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-date i { width: 13px; height: 13px; }
.blog-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card.featured .blog-body h3 { font-size: 22px; }
.blog-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-light);
  transition: var(--transition);
}
.blog-read-more:hover { color: var(--accent); gap: 10px; }
.blog-read-more i { width: 16px; height: 16px; }

/* ====== GLOBAL REACH ====== */
.global-reach {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.global-reach .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.global-reach h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
}
.global-reach h2 span { color: var(--accent); }
.global-reach > .container > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}
.world-map-svg {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto 48px;
  display: block;
}
.world-map-svg .land {
  fill: rgba(255,255,255,0.08);
  stroke: rgba(255,255,255,0.15);
  stroke-width: 0.5;
}
.world-map-svg .land-highlight {
  fill: rgba(232,68,14,0.25);
  stroke: rgba(232,68,14,0.4);
  stroke-width: 0.8;
  animation: mapPulse 3s ease-in-out infinite;
}
.world-map-svg .map-dot {
  fill: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { fill: rgba(232,68,14,0.2); }
  50% { fill: rgba(232,68,14,0.35); }
}
@keyframes dotPulse {
  0%, 100% { r: 4; opacity: 1; }
  50% { r: 6; opacity: 0.7; }
}
.region-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.region-tag {
  padding: 10px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.region-tag i { width: 16px; height: 16px; }
.region-tag:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

/* ====== TESTIMONIALS ====== */
.testimonials { background: var(--gray-bg); }
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.testimonial-stars i { width: 20px; height: 20px; fill: var(--accent); color: var(--accent); }
.testimonial-text {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}
.testimonial-location {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.testimonial-location i { width: 13px; height: 13px; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dots span.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* ====== LIGHTBOX ====== */
.autoparts-lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.autoparts-lightbox.active {
  display: flex;
}
.lightbox-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11,25,41,0.92);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  z-index: 2;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(232,68,14,0.8);
}

/* ====== LOAD MORE ====== */
.load-more-wrap {
  text-align: center;
  padding: 40px 0 20px;
}
.load-more-wrap .btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: var(--transition);
  font-size: 15px;
}
.load-more-wrap .btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
}
.load-more-wrap .btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ====== Traditional Pagination (the_posts_pagination) ====== */
.pagination,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary, #111827);
  text-decoration: none;
  background: #fff;
  transition: all 0.2s ease;
}
.page-numbers:hover {
  border-color: var(--accent, #E8440E);
  color: var(--accent, #E8440E);
  background: rgba(232,68,14,0.05);
}
.page-numbers.current {
  background: var(--accent, #E8440E);
  border-color: var(--accent, #E8440E);
  color: var(--dark, #111827);
  font-weight: 700;
}
.page-numbers.prev,
.page-numbers.next {
  font-size: 13px;
  letter-spacing: 0.5px;
}
.page-numbers.dots {
  border: none;
  background: none;
  color: var(--text-muted, #9ca3af);
  min-width: 24px;
  cursor: default;
}
.page-numbers.dots:hover {
  background: none;
  color: var(--text-muted, #9ca3af);
}

/* ====== CONTACT FORM SECTION ====== */
.contact-section {
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 200%;
  background: rgba(232,68,14,0.04);
  transform: rotate(-15deg);
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 2; }
.contact-section h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-section h2 span { color: var(--accent); }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { grid-column: span 2; text-align: center; margin-top: 8px; }
.form-submit .btn-primary { padding: 16px 48px; font-size: 16px; }

/* ====== FOOTER ====== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--dark); }
.footer-social a i { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 3px;
  background: var(--accent);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-item i { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ====== WHATSAPP FLOATING BUTTON ====== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: pulse 2s infinite;
  color: var(--white);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.whatsapp-float i { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ====== MODAL ====== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,25,41,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--gray-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.modal-close:hover { background: #eee; }
.modal-close i { width: 16px; height: 16px; }
.modal-icon {
  width: 60px; height: 60px;
  background: rgba(232,68,14,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal-icon i { width: 28px; height: 28px; color: var(--accent-hover); }
.modal h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark);
}
.modal > p {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.modal .form-group { margin-bottom: 14px; }
.modal .form-group label { color: var(--text-primary); font-size: 12px; }
.modal .form-group input,
.modal .form-group select {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.modal .form-group input:focus,
.modal .form-group select:focus {
  border-color: var(--accent);
  background: var(--white);
}
.modal .form-group input::placeholder { color: var(--text-light); }
.modal .form-group select option { background: var(--white); color: var(--text-primary); }
.modal .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-top: 8px;
}
.modal-secure {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.modal-secure i { width: 12px; height: 12px; }

/* ====== BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9998;
  width: 44px; height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(11,25,41,0.2);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--accent); color: var(--dark); }
.back-to-top i { width: 18px; height: 18px; }

/* ====== SCROLL ANIMATIONS ====== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.stagger-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.stagger-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.stagger-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.stagger-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.stagger-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.stagger-grid .animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.stagger-grid .animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }
.stagger-grid .animate-on-scroll:nth-child(9) { transition-delay: 0.45s; }
.stagger-grid .animate-on-scroll:nth-child(10) { transition-delay: 0.5s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 14px; margin-bottom: 32px; }
  .topbar-left { display: none; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 1000;
    padding: 80px 24px 24px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Top-level links only */
  .nav-menu.mobile-active > a,
  .nav-menu.mobile-active > .menu-item-has-children {
    border-bottom: 1px solid var(--border);
    position: static;
  }
  .nav-menu.mobile-active > a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
  }
  /* Products parent item */
  .nav-menu.mobile-active > .menu-item-has-children > a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
  }
  /* Sub-menu container — zero layout impact until shown */
  .nav-menu.mobile-active .sub-menu {
    position: static;
    transform: none;
    margin: 0;
    padding: 0;
    transition: none;
  }
  /* Sub-menu links — indented hierarchy */
  .nav-menu.mobile-active .sub-menu a {
    padding: 12px 0 12px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(11,25,41,0.04);
    font-weight: 500;
    color: var(--text-secondary);
  }
  .nav-menu.mobile-active .sub-menu .sub-menu a {
    padding-left: 36px;
    font-size: 14px;
    color: var(--text-light);
  }
  .hero { min-height: auto; padding: 60px 0; }
  .hero .container { flex-direction: column; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .hero-image { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-number { font-size: 28px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; justify-content: center; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .advantage-card { padding: 28px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .catalog-cta .container { flex-direction: column; text-align: center; }
  .catalog-content p { margin-left: auto; margin-right: auto; }
  .catalog-icon { width: 120px; height: 120px; }
  .catalog-icon i { width: 40px; height: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-row: span 1; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .form-submit { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-info { padding: 12px; }
  .category-info h3 { font-size: 12px; }
  .region-tags { gap: 8px; }
  .region-tag { padding: 8px 16px; font-size: 12px; }
}

/* ============================================
   MISSING STYLES FROM HTML DESIGNS
   Added for complete theme coverage
   ============================================ */

/* ====== BLOG CONTENT WRAPPER ====== */
.blog-content {
  flex: 1;
  min-width: 0;
}

/* ====== POST AUTHOR ROLE ====== */
.post-author-role {
  font-size: 11px;
  color: var(--text-light);
}

/* ====== ARTICLE TABLE OF CONTENTS ====== */
.article-toc {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.article-toc h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-toc ul li { margin-bottom: 8px; }
.article-toc ul li a {
  font-size: 14px;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-toc ul li a:hover { color: var(--accent); }
.article-toc ul li a::before {
  content: '→';
  font-size: 12px;
  color: var(--text-light);
}

/* ====== IMAGE PLACEHOLDER & CAPTION (Blog Article) ====== */
.article-body .img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  margin: 24px 0;
}
.article-body .img-caption {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: -16px;
  margin-bottom: 24px;
}

/* ====== ARTICLE BODY TABLE ====== */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.article-body table th {
  background: var(--primary-light);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.article-body table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.article-body table tr:nth-child(even) {
  background: var(--gray-bg);
}

/* ====== ARTICLE CTA BOX (Blog variant) ====== */
.article-cta {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 32px 0;
  text-align: center;
}
.article-cta h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.article-cta h3 span { color: var(--accent); }
.article-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* ====== SOCIAL SHARE BAR ====== */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.share-bar span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 4px;
}
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn:hover { transform: scale(1.1); opacity: 0.9; }

/* ====== RELATED ARTICLES (Blog) ====== */
.related-articles {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.related-articles h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}
.related-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.related-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.related-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 12px;
}
.related-card-body {
  padding: 16px;
}
.related-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.related-card-body h4 a:hover { color: var(--primary-light); }
.related-card-body span {
  font-size: 12px;
  color: var(--text-light);
}

/* ====== BOTTOM CTA TEXT WRAPPER ====== */
.bottom-cta-text h2 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.bottom-cta-text h2 span { color: var(--accent); }
.bottom-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

/* ====== TEAM SECTION (About page) ====== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--gray-bg);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 3px solid var(--border);
}
.team-avatar i {
  width: 40px;
  height: 40px;
}
.team-card h4 {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-card span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ====== INFO BOX (Product detail sidebar) ====== */
.info-box {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
}
.info-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.info-box p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.info-box .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 13px;
}
.info-box .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: #25D366;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--transition);
}
.info-box .whatsapp-btn:hover { background: #1da851; }

/* ====== ERROR PAGE ====== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.error-page h1 {
  font-size: 120px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
}
.error-page p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.error-page .btn-primary {
  padding: 14px 32px;
}

/* ====== BLOG LIST: FEATURED POST (Enhanced) ====== */
.featured-post {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  transition: var(--transition);
}
.featured-post:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.featured-post-inner {
  display: flex;
  min-height: 280px;
}
.featured-post-img {
  width: 45%;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post-img .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 2;
}
.featured-post-img i {
  width: 48px;
  height: 48px;
  opacity: 0.2;
}
.featured-post-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-post-body h2 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
}
.featured-post-body h2 a:hover { color: var(--primary-light); }
.featured-post-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-light);
  transition: var(--transition);
}
.read-more:hover {
  color: var(--accent);
  gap: 10px;
}

/* ====== POST META (Blog) ====== */
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.post-category {
  padding: 4px 10px;
  background: rgba(232,68,14,0.1);
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}
.post-date {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-date i { width: 13px; height: 13px; }
.post-read-time {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-read-time i { width: 13px; height: 13px; }

/* ====== POST CARD (Blog list) ====== */
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.post-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.post-card:hover .post-card-img img {
  transform: scale(1.03);
}
.post-card-img i {
  width: 32px;
  height: 32px;
  opacity: 0.2;
}
.post-card-body {
  padding: 20px;
}
.post-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.post-card-body h3 a:hover { color: var(--primary-light); }
.post-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Post Author */
.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.post-author-avatar {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}
.post-author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}

/* ====== LOAD MORE (Blog) ====== */
.load-more {
  text-align: center;
  margin-top: 40px;
}
.load-more button,
.load-more .btn-outline {
  padding: 14px 48px;
  background: transparent;
  color: var(--primary-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.load-more button:hover,
.load-more .btn-outline:hover {
  background: var(--primary-light);
  color: var(--white);
}

/* ====== CATEGORY TABS (Blog) ====== */
.category-tabs {
  padding: 16px 0 0;
}
.category-tabs .container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cat-tab {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.cat-tab:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.cat-tab.active {
  background: var(--accent);
  color: var(--dark);
}

/* ====== SIDEBAR NEWSLETTER ====== */
.sidebar-newsletter {
  padding: 20px;
  text-align: center;
}
.sidebar-newsletter h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--dark);
}
.sidebar-newsletter p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.sidebar-newsletter .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 13px;
}

/* ====== SIDEBAR TAGS ====== */
.sidebar-tags {
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-tags .tag {
  padding: 5px 12px;
  background: var(--gray-bg);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-tags .tag:hover {
  background: var(--accent);
  color: var(--dark);
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ====== BREADCRUMB NAV ====== */
nav.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* ====== SPINNER ANIMATION ====== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.icon.spin {
  animation: spin 1s linear infinite;
}

/* ====== STRUCTURED DATA HELPERS ====== */
/* Ensure breadcrumb Schema items render inline */
nav.breadcrumb [itemprop="itemListElement"] {
  display: inline;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 30px rgba(11,25,41,0.3);
}
.cookie-consent.visible {
  transform: translateY(0);
}
.cookie-consent-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-consent-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232,68,14,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-consent-icon i {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.cookie-consent-content {
  flex: 1;
}
.cookie-consent-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}
.cookie-consent-content p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.cookie-consent-content a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-consent-content a:hover {
  color: var(--white);
}
.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--accent);
  color: var(--dark);
}
.cookie-btn-accept:hover {
  background: var(--accent-hover);
}
.cookie-btn-essential {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-btn-essential:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  padding: 10px 16px;
}
.cookie-btn-settings:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4px;
}
.cookie-settings-panel h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin: 16px 0 12px;
}
.cookie-setting-item {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-setting-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}
.cookie-setting-item input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}
.cookie-setting-item strong {
  color: var(--white);
}
.cookie-setting-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 4px 0 0 26px;
  line-height: 1.5;
}
.cookie-settings-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

/* ====== COOKIE CONSENT RESPONSIVE ====== */
@media (max-width: 768px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 16px;
  }
  .cookie-consent-icon { display: none; }
  .cookie-consent-actions {
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }
  .cookie-btn {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 12px 10px;
    font-size: 12px;
    white-space: normal;
    word-break: break-word;
  }
  .cookie-settings-panel {
    padding: 0 16px 20px;
  }
}

/* ====== WORDPRESS NAV MENU (wp_nav_menu) ====== */
.nav-menu .nav-menu-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu .nav-menu-list > li {
  position: relative;
}
.nav-menu .nav-menu-list > li > a {
  display: block;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
  text-decoration: none;
}
.nav-menu .nav-menu-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-menu .nav-menu-list > li > a:hover::after,
.nav-menu .nav-menu-list > li.current-menu-item > a::after,
.nav-menu .nav-menu-list > li.current-menu-parent > a::after,
.nav-menu .nav-menu-list > li.current_page_item > a::after {
  width: 60%;
}
.nav-menu .nav-menu-list > li > a:hover,
.nav-menu .nav-menu-list > li.current-menu-item > a,
.nav-menu .nav-menu-list > li.current-menu-parent > a,
.nav-menu .nav-menu-list > li.current_page_item > a {
  color: var(--primary-light);
}

/* Sub-menu (dropdown) */
.nav-menu .nav-menu-list > li > ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(11,25,41,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1000;
}
.nav-menu .nav-menu-list > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .nav-menu-list > li > ul.sub-menu > li > a {
  display: block;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
  text-decoration: none;
}
.nav-menu .nav-menu-list > li > ul.sub-menu > li > a:hover,
.nav-menu .nav-menu-list > li > ul.sub-menu > li.current-menu-item > a {
  color: var(--accent);
  background: rgba(232,68,14,0.05);
  padding-left: 24px;
}

/* Dropdown arrow indicator for parent items */
.nav-menu .nav-menu-list > li.menu-item-has-children > a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  opacity: 0.5;
}

/* ====== MOBILE: WordPress Menu ====== */
@media (max-width: 768px) {
  .nav-menu .nav-menu-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-menu .nav-menu-list > li {
    position: static;
  }
  .nav-menu .nav-menu-list > li > a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu .nav-menu-list > li > a::after { display: none; }

  /* Mobile sub-menu: accordion style */
  .nav-menu .nav-menu-list > li > ul.sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0;
    padding: 0 0 0 20px;
    display: none;
    transition: none;
  }
  .nav-menu .nav-menu-list > li.menu-item-has-children.open > ul.sub-menu {
    display: block;
  }
  .nav-menu .nav-menu-list > li > ul.sub-menu > li {
    position: static;
  }
  .nav-menu .nav-menu-list > li > ul.sub-menu > li > a {
    display: block;
    width: 100%;
    padding: 11px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(11,25,41,0.04);
  }
  .nav-menu .nav-menu-list > li > ul.sub-menu > li > a:hover {
    padding-left: 0;
    background: none;
  }
  /* Nested sub-menus */
  .nav-menu .nav-menu-list .sub-menu .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    margin: 0;
    padding: 0 0 0 20px;
    display: none;
    transition: none;
  }
  .nav-menu .nav-menu-list .sub-menu .menu-item-has-children.open > .sub-menu {
    display: block;
  }
}

/* ====== FALLBACK MENU: Products Dropdown ====== */
.nav-menu .menu-item-has-children {
  position: relative;
}
.nav-menu .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-menu .menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(11,25,41,0.12);
  border: 1px solid var(--border, #e5e7eb);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.nav-menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-menu .menu-item-has-children > .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary, #111827);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-menu .menu-item-has-children > .sub-menu li a:hover {
  background: rgba(232,68,14,0.08);
  color: #E8440E;
}

/* Desktop: nested sub-menu (subcategories flyout) */
.nav-menu .sub-menu .menu-item-has-children {
  position: relative;
}
.nav-menu .sub-menu .menu-item-has-children > .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(11,25,41,0.12);
  border: 1px solid var(--border, #e5e7eb);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.nav-menu .sub-menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nav-menu .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu .icon-sub {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  flex-shrink: 0;
  margin-left: 8px;
}

/* Mobile fallback dropdown */
@media (max-width: 768px) {
  /* Reset desktop positioning — keep parent link stationary */
  .nav-menu .menu-item-has-children {
    position: static;
  }
  .nav-menu .menu-item-has-children > a {
    display: block;
    width: 100%;
  }
  /* Sub-menu: hidden by default, no layout impact when hidden */
  .nav-menu .menu-item-has-children > .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 20px;
    display: none;
    transition: none;
  }
  .nav-menu .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .nav-menu .menu-item-has-children > .sub-menu li a {
    padding: 11px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(11,25,41,0.04);
    display: block;
    width: 100%;
  }
  /* Nested sub-menus (subcategories) */
  .nav-menu .sub-menu .menu-item-has-children {
    position: static;
  }
  .nav-menu .sub-menu .menu-item-has-children > .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 20px;
    display: none;
    transition: none;
  }
  .nav-menu .sub-menu .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .nav-menu .sub-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-menu .icon-sub {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    flex-shrink: 0;
  }
  .nav-menu .menu-item-has-children.open > a .icon-sub {
    transform: rotate(90deg);
  }
}

/* ====== HAMBURGER ANIMATION ====== */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* ====== PRODUCT DETAIL LAYOUT ====== */
.product-detail {
  padding: 40px 0;
}
.product-top {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}

/* ====== PRODUCT GALLERY ====== */
.product-gallery {
  flex: 1;
  max-width: 55%;
  min-width: 0;
}
.gallery-main {
  position: relative;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}
.gallery-main .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 2;
}
.gallery-main > i[data-lucide] {
  width: 80px;
  height: 80px;
  color: var(--text-light);
  opacity: 0.3;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--gray-bg);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--accent);
}

/* ====== PRODUCT INFO ====== */
.product-info {
  flex: 1;
  min-width: 0;
}
.product-info h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.product-info .subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Product Tags */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.product-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(13,33,55,0.06);
  border: 1px solid rgba(13,33,55,0.12);
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.product-tags .tag i {
  width: 14px;
  height: 14px;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.product-actions .btn-primary,
.product-actions .btn-dark,
.product-actions .btn-outline-dark {
  font-size: 14px;
  padding: 12px 24px;
}

/* Quick Specs */
.quick-specs {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.quick-spec {
  text-align: center;
  flex: 1;
}
.quick-spec .value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--primary-light);
  margin-bottom: 4px;
}
.quick-spec .label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Key Features */
.key-features {
  margin-bottom: 24px;
}
.key-features h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.key-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.key-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,25,41,0.04);
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.key-features li:last-child {
  border-bottom: none;
}
.key-features li i {
  width: 18px;
  height: 18px;
  color: var(--accent-hover);
  flex-shrink: 0;
  margin-top: 2px;
}
.key-features li strong {
  color: var(--dark);
}
/* Key Features: 2-column when > 4 items */
.key-features--grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.key-features--grid li {
  border-bottom: none;
  padding: 6px 0;
}
/* Key Features: 3-column when >= 9 items */
.key-features--grid-3 ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 24px;
}
.key-features--grid-3 li {
  border-bottom: none;
  padding: 6px 0;
}

/* ====== PRODUCT TABS ====== */
.product-tabs {
  margin-top: 16px;
}
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}
.tab-nav button {
  background: none;
  border: none;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tab-nav button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.tab-nav button:hover {
  color: var(--dark);
}
.tab-nav button.active {
  color: var(--dark);
}
.tab-nav button.active::after {
  transform: scaleX(1);
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 32px 0;
}
.tab-content.active {
  display: block;
}
.tab-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.tab-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

/* Specifications Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.spec-table tr:nth-child(even) {
  background: var(--gray-bg);
}
.spec-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 40%;
  background: rgba(13,33,55,0.03);
}
.spec-table td:last-child {
  color: var(--text);
}
.spec-table tr:last-child td {
  border-bottom: none;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.feature-card i {
  width: 36px;
  height: 36px;
  color: var(--accent-hover);
  margin-bottom: 12px;
}
.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Gallery Grid (Tab) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid .g-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-bg);
}
.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  cursor: zoom-in;
}
.gallery-grid .g-item:hover img {
  transform: scale(1.05);
}

/* ====== RELATED PRODUCTS ====== */
.related-products .related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ====== RESPONSIVE: PRODUCT DETAIL ====== */
@media (max-width: 1024px) {
  .product-top {
    flex-direction: column;
    gap: 32px;
  }
  .product-gallery {
    max-width: 100%;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-products .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-info h1 {
    font-size: 24px;
  }
  .product-actions {
    flex-direction: column;
  }
  .product-actions .btn-primary,
  .product-actions .btn-dark,
  .product-actions .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }
  .quick-specs {
    gap: 16px;
  }
  .quick-spec .value {
    font-size: 20px;
  }
  .tab-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tab-nav button {
    padding: 12px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-products .related-grid {
    grid-template-columns: 1fr;
  }
  .gallery-main {
    min-height: 250px;
  }
}

/* ============================================
   BLOG LIST PAGE - blog.html design
   ============================================ */

/* ====== SIDEBAR STYLES (blog design) ====== */
.sidebar-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--primary-light);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.sidebar-title i {
  width: 16px;
  height: 16px;
}

.sidebar-category-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 14px;
  color: var(--text-primary);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-category-list li a:hover {
  background: rgba(232,68,14,.06);
  color: var(--primary-light);
  border-left-color: var(--accent);
  padding-left: 24px;
}
.sidebar-category-list li a.active {
  background: rgba(232,68,14,.1);
  color: var(--primary-light);
  border-left-color: var(--accent);
  font-weight: 700;
}
.sidebar-category-list li a .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sidebar-category-list li a .count {
  margin-left: auto;
  background: var(--gray-bg);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 24px;
  text-align: center;
}
.sidebar-category-list li a.active .count {
  background: var(--accent);
  color: var(--dark);
}

.sidebar-popular {
  padding: 16px 20px;
}
.popular-item {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.popular-item:last-child {
  border-bottom: none;
}
.popular-item:hover {
  padding-left: 24px;
  background: rgba(232,68,14,0.04);
}
.popular-thumb {
  width: 64px;
  height: 48px;
  background: var(--gray-bg);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  overflow: hidden;
}
.popular-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-thumb i {
  width: 20px;
  height: 20px;
  opacity: 0.3;
}
.popular-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.4;
}
.popular-info h4:hover {
  color: var(--primary-light);
}
.popular-info span {
  font-size: 11px;
  color: var(--text-light);
}

/* Tags */
.sidebar-tags {
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-tags .tag {
  padding: 5px 12px;
  background: var(--gray-bg);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-tags .tag:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Newsletter */
.sidebar-newsletter {
  padding: 20px;
  text-align: center;
}
.sidebar-newsletter h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--dark);
}
.sidebar-newsletter p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.sidebar-newsletter .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 13px;
}

/* ====== FEATURED POST ====== */
.featured-post {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  transition: var(--transition);
}
.featured-post:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.featured-post-inner {
  display: flex;
  min-height: 280px;
}
.featured-post-img {
  width: 45%;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post-img .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 2;
}
.featured-post-img i {
  width: 48px;
  height: 48px;
  opacity: 0.2;
}
.featured-post-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-post-body h2 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
}
.featured-post-body h2 a:hover {
  color: var(--primary-light);
}
.featured-post-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-light);
  transition: var(--transition);
}
.read-more:hover {
  color: var(--accent);
  gap: 10px;
}

/* Post Meta */
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.post-category {
  padding: 4px 10px;
  background: rgba(232,68,14,.1);
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}
.post-date {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-date i {
  width: 13px;
  height: 13px;
}
.post-read-time {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-read-time i {
  width: 13px;
  height: 13px;
}

/* ====== POST CARD (blog design) ====== */
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.post-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.post-card:hover .post-card-img img {
  transform: scale(1.03);
}
.post-card-img i {
  width: 32px;
  height: 32px;
  opacity: 0.2;
}
.post-card-body {
  padding: 20px;
}
.post-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.post-card-body h3 a:hover {
  color: var(--primary-light);
}
.post-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Post Author */
.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.post-author-avatar {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}
.post-author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}

/* ====== LOAD MORE (blog design) ====== */
.load-more {
  text-align: center;
  margin-top: 40px;
}
.load-more button,
.load-more .btn-outline {
  padding: 14px 48px;
  background: transparent;
  color: var(--primary-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.load-more button:hover,
.load-more .btn-outline:hover {
  background: var(--primary-light);
  color: var(--white);
}

/* ====== RESPONSIVE: BLOG ====== */
@media (max-width: 1024px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
    gap: 24px;
  }
  .sidebar {
    width: 100%;
    position: static;
    max-height: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-block {
    margin-bottom: 0;
  }
  .featured-post-inner {
    flex-direction: column;
  }
  .featured-post-img {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .featured-post-body {
    padding: 20px;
  }
  .featured-post-body h2 {
    font-size: 20px;
  }
  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .sidebar {
    grid-template-columns: 1fr;
  }
  .category-tabs .container {
    gap: 6px;
  }
  .cat-tab {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* ============================================
   ADDITIONAL WP TEMPLATE STYLES
   For 404, search, toolbar, and layout helpers
   ============================================ */

/* ====== TOPBAR RIGHT ====== */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ====== TOOLBAR LAYOUT ====== */
.toolbar-left {
  font-size: 14px;
  color: var(--text-secondary);
}
.toolbar-left strong {
  color: var(--dark);
  font-weight: 700;
}
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ====== PRODUCT CARD IMAGE ====== */
.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.product-card-img .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 3px;
}
.product-card:hover /* ====== 404 / ERROR PAGE ====== */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
}
.error-page p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}
.error-content {
  max-width: 600px;
}
.error-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(232,68,14,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-icon i {
  width: 40px;
  height: 40px;
  color: var(--accent);
}
.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-actions .btn-primary {
  padding: 14px 32px;
}
.error-suggestions {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-suggestions h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 16px;
}
.suggestion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.suggestion-link {
  padding: 8px 16px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-primary);
  transition: var(--transition);
}
.suggestion-link:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

/* ====== NO RESULTS ====== */
.no-results {
  text-align: center;
  padding: 60px 24px;
}
.no-results-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-results-icon i {
  width: 32px;
  height: 32px;
  color: var(--text-light);
}
.no-results h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}
.no-results p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.no-results-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ====== SIDEBAR SEARCH ====== */
.sidebar-search {
  padding: 16px 20px;
}
.sidebar-search form {
  display: flex;
  gap: 8px;
}
.sidebar-search input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.sidebar-search input:focus {
  border-color: var(--accent);
}
.sidebar-search button {
  padding: 10px 16px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.sidebar-search button:hover {
  background: var(--accent-hover);
}

/* ==========================================================
   MOBILE MENU — Complete Override (v1.6.4)
   Handles BOTH WordPress menu and fallback menu structures.
   Placed at end of file for maximum cascade priority.
   ========================================================== */
@media (max-width: 768px) {

  /* ---- Container ---- */
  .nav-menu {
    display: none !important;
  }
  .nav-menu.mobile-active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 1000;
    padding: 72px 20px 24px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ---- Top-level: direct children of .nav-menu (fallback menu) ---- */
  .nav-menu.mobile-active > a,
  .nav-menu.mobile-active > div.menu-item-has-children {
    display: block;
    text-align: center;
    border-bottom: 1px solid var(--border, #e0e0e0);
  }
  .nav-menu.mobile-active > a {
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary, #333);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .nav-menu.mobile-active > div.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary, #333);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  /* ---- Top-level: WordPress menu <ul> ---- */
  .nav-menu.mobile-active .nav-menu-list {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-menu.mobile-active .nav-menu-list > li {
    display: block;
    text-align: center;
    border-bottom: 1px solid var(--border, #e0e0e0);
  }
  .nav-menu.mobile-active .nav-menu-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary, #333);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .nav-menu.mobile-active .nav-menu-list > li > a::after { display: none; }

  /* ---- Arrow icon on parent items ---- */
  .nav-menu.mobile-active .icon-sub,
  .nav-menu.mobile-active > div.menu-item-has-children > a .icon,
  .nav-menu.mobile-active .nav-menu-list > li.menu-item-has-children > a .icon {
    width: 14px;
    height: 14px;
    opacity: 0.4;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .nav-menu.mobile-active .menu-item-has-children.open > a .icon,
  .nav-menu.mobile-active .menu-item-has-children.open > a .icon-sub,
  .nav-menu.mobile-active .nav-menu-list > li.menu-item-has-children.open > a .icon {
    transform: rotate(90deg);
  }

  /* ---- Sub-menu: HIDDEN by default, zero layout impact ---- */
  .nav-menu.mobile-active .sub-menu,
  .nav-menu.mobile-active > div.menu-item-has-children > ul.sub-menu,
  .nav-menu.mobile-active .nav-menu-list > li > ul.sub-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: none;
  }

  /* ---- Sub-menu: SHOWN when parent has .open ---- */
  .nav-menu.mobile-active .menu-item-has-children.open > .sub-menu,
  .nav-menu.mobile-active .nav-menu-list > li.menu-item-has-children.open > ul.sub-menu {
    display: block;
  }

  /* ---- Sub-menu links ---- */
  .nav-menu.mobile-active .sub-menu a,
  .nav-menu.mobile-active .sub-menu li > a,
  .nav-menu.mobile-active > div.menu-item-has-children > ul.sub-menu li > a,
  .nav-menu.mobile-active .nav-menu-list > li > ul.sub-menu > li > a {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary, #666);
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(11,25,41,0.04);
  }

  /* ---- Nested sub-menus (level 2+) ---- */
  .nav-menu.mobile-active .sub-menu .sub-menu,
  .nav-menu.mobile-active .nav-menu-list .sub-menu .sub-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: none;
  }
  .nav-menu.mobile-active .sub-menu .menu-item-has-children.open > .sub-menu,
  .nav-menu.mobile-active .nav-menu-list .sub-menu .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .nav-menu.mobile-active .sub-menu .sub-menu a {
    text-align: center;
    padding-left: 0;
    font-size: 14px;
    color: var(--text-light, #999);
  }

  /* ---- Override ALL desktop hover/dropdown styles ---- */
  .nav-menu.mobile-active .menu-item-has-children,
  .nav-menu.mobile-active .nav-menu-list > li,
  .nav-menu.mobile-active .sub-menu .menu-item-has-children {
    position: static !important;
  }
  .nav-menu.mobile-active .sub-menu,
  .nav-menu.mobile-active .nav-menu-list .sub-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-menu.mobile-active a {
    transition: none !important;
  }
}

/* ============================================
   AUTO PARTS PRO - Additional Components
   ============================================ */

/* ====== ACCENT LINE (replaces yellow-line) ====== */
.accent-line {
  display: inline-block;
  border-bottom: 4px solid var(--accent);
  padding-bottom: 4px;
}

/* ====== TOPBAR ENHANCEMENTS ====== */
.topbar-divider {
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
}
.topbar-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 12px;
}
.topbar-tagline .icon { width: 14px; height: 14px; }

/* ====== HEADER SEARCH BAR ====== */
.header-search {
  flex: 1;
  max-width: 420px;
  margin: 0 24px;
}
.header-search form {
  display: flex;
  align-items: center;
  background: var(--gray-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.header-search form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,68,14,0.1);
}
.search-type-select {
  padding: 10px 12px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  cursor: pointer;
  border-right: 1px solid var(--border);
  min-width: 80px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.header-search input[type="search"] {
  flex: 1;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  font-family: 'Inter', sans-serif;
}
.header-search input[type="search"]::placeholder {
  color: var(--text-light);
}
.header-search button {
  padding: 10px 14px;
  background: var(--accent);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.header-search button:hover {
  background: var(--accent-hover);
}
.header-search button .icon { width: 18px; height: 18px; }


/* ====== VEHICLE LOOKUP - LIGHT STYLE ====== */
/* Vehicle Lookup removed — replaced by Parts Search section */
.brand-logos {
  margin-top: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.brand-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.brand-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.brand-chip {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.brand-chip:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ====== BRANDS SECTION ====== */
.brands-section {
  background: var(--gray-bg);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.brand-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.brand-group:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.brand-group h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-group h3 .icon { width: 18px; height: 18px; color: var(--accent); }
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-tags span {
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.brand-tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ====== PRODUCT CARD ENHANCEMENTS ====== */
.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  overflow: hidden;
  flex-direction: column;
  gap: 6px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.3px;
}
.badge-hot {
  background: var(--accent);
  color: var(--white);
}
.badge-stock {
  background: var(--success);
  color: var(--white);
  left: auto;
  right: 12px;
}
.product-oem {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  font-family: 'Roboto Mono', monospace;
}
.product-oem .icon { width: 12px; height: 12px; }
.product-actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-inquiry:hover {
  background: var(--accent);
}
.btn-inquiry .icon { width: 14px; height: 14px; }

/* ====== CATALOG FEATURES ====== */
.catalog-features {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.catalog-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}
.catalog-features .icon { width: 16px; height: 16px; color: var(--accent); }

/* ====== FOOTER CERTIFICATIONS ====== */
.footer-certifications {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cert-badge .icon { width: 12px; height: 12px; }

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

@media (max-width: 768px) {
  .header-search { display: none; }
  .brands-grid { grid-template-columns: 1fr; }
  .catalog-features { flex-direction: column; gap: 12px; }
  .topbar-tagline { display: none; }
  .topbar-divider { display: none; }
}

@media (max-width: 480px) {
}

/* ====== CONTACT SPLIT (Catalog CTA + Form) ====== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-cta-side {
  padding: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.cta-icon {
  width: 72px;
  height: 72px;
  background: rgba(232,68,14,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cta-icon i { width: 32px; height: 32px; color: var(--accent); }
.contact-cta-side h2 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-cta-side h2 span { color: var(--accent); }
.contact-cta-side p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cta-checklist {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta-checklist li:last-child { border-bottom: none; }
.cta-checklist .icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.contact-form-side h2 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-side h2 span { color: var(--accent); }
.contact-form-side > p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; gap: 32px; }
  .contact-cta-side { padding: 24px; }
  .contact-cta-side h2, .contact-form-side h2 { font-size: 22px; }
}

/* ====== TRUST BAR ====== */
.trust-bar {
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
  padding: 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-item .icon { width: 18px; height: 18px; color: var(--accent); }

@media (max-width: 768px) {
  .trust-items { justify-content: center; }
  .trust-item { padding: 10px 16px; font-size: 11px; border-right: none; }
}
@media (max-width: 480px) {
  .trust-items { gap: 0; }
  .trust-item { padding: 8px 12px; font-size: 10px; }
  .trust-item .icon { width: 14px; height: 14px; }
}

/* ====== PRODUCTS SHOWCASE (Tabbed) ====== */
.products-showcase { background: var(--white); }
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.showcase-tab {
  padding: 10px 24px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.showcase-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.showcase-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.showcase-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.showcase-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
}

/* ====== HERO DECORATIVE ELEMENT (no-image fallback) ====== */
.hero-decor {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-decor-circle {
  width: 260px;
  height: 260px;
  background: rgba(232,68,14,0.12);
  border-radius: 50%;
  position: absolute;
}
.hero-decor-ring {
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 50%;
  position: absolute;
  animation: decorSpin 30s linear infinite;
}
@keyframes decorSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-decor-dots {
  position: absolute;
  width: 320px;
  height: 320px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  place-items: center;
}
.hero-decor-dots span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.hero-decor-dots span:nth-child(5) {
  width: 12px;
  height: 12px;
  background: var(--accent);
}
.hero-decor-badge {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.hero-decor-badge i {
  width: 48px;
  height: 48px;
  color: var(--accent);
  animation: decorSpin 8s linear infinite;
}
.hero-decor-badge span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   MOBILE POLISH - New Components
   ============================================ */

@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { gap: 40px; }
}

@media (max-width: 768px) {
  /* Hero Decor - hide on mobile, too complex */
  .hero-decor { display: none; }
  .hero-image { display: none; }

  /* Trust Bar - horizontal scroll */
  .trust-items {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 0 8px;
  }
  .trust-items::-webkit-scrollbar { display: none; }
  .trust-item {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 11px;
    border-right: none;
  }

  /* Vehicle Lookup - compact */
  .vehicle-lookup .section-subtitle { font-size: 13px; margin-bottom: 24px; }
  .lookup-actions .btn-primary,
  .lookup-actions .btn-outline-dark {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Products Showcase - tabs scroll */
  .showcase-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 0 4px 8px;
    margin-bottom: 24px;
    gap: 6px;
  }
  .showcase-tabs::-webkit-scrollbar { display: none; }
  .showcase-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 12px;
  }
  .showcase-cta {
    flex-direction: column;
    gap: 12px;
  }
  .showcase-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Brands - stacked */
  .brands-grid { grid-template-columns: 1fr; gap: 16px; }
  .brand-group { padding: 20px; }
  .brand-group h3 { font-size: 14px; margin-bottom: 12px; }
  .brand-tags { gap: 6px; }
  .brand-tags span { padding: 5px 12px; font-size: 12px; }

  /* Blog - single column */
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card.featured { grid-row: span 1; }
  .blog-card.featured .blog-body h3 { font-size: 18px; }

  /* Contact Split - stacked */
  .contact-split { grid-template-columns: 1fr; gap: 24px; }
  .contact-cta-side { padding: 24px; }
  .contact-cta-side h2 { font-size: 22px; }
  .cta-checklist li { font-size: 13px; padding: 6px 0; }
  .contact-form-side h2 { font-size: 22px; }

  /* Hero tighten */
  .hero { min-height: auto; padding: 50px 0 40px; }
  .hero h1 { font-size: 28px; line-height: 1.2; }
  .hero p { font-size: 14px; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Lookup - single column */
  .lookup-form { padding: 16px; }

  /* Showcase tabs - tighter */
  .showcase-tab { padding: 7px 14px; font-size: 11px; }

  /* Brand tags - wrap tighter */
  .brand-tags span { padding: 4px 10px; font-size: 11px; }

  /* CTA checklist */
  .cta-checklist li { font-size: 12px; }
  .contact-cta-side { padding: 16px; }
  .contact-cta-side h2 { font-size: 20px; }
  .contact-form-side h2 { font-size: 20px; }

  /* Trust bar - very compact */
  .trust-item { padding: 8px 12px; font-size: 10px; }
  .trust-item .icon { width: 12px; height: 12px; }
}


/* ============================================================
   HEADER v3 — Redesigned Mega Header
   ============================================================ */

.topbar-v3 { background: var(--dark); color: var(--text-light); font-size: 12px; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.topbar-v3 .container { display: flex; justify-content: space-between; align-items: center; min-height: 36px; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 0; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; color: rgba(255,255,255,0.6); font-size: 12px; transition: color 0.2s; white-space: nowrap; }
.topbar-item:hover { color: var(--accent); }
.topbar-item .icon { width: 13px; height: 13px; opacity: 0.7; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.1); }
.topbar-tagline-v3 { color: rgba(255,255,255,0.45); }
.topbar-whatsapp { color: #25D366; }
.topbar-whatsapp:hover { color: #2be371; }

.header-v3 { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 8px rgba(11,25,41,0.04); transition: box-shadow 0.3s ease; }
.header-v3.scrolled { box-shadow: 0 4px 20px rgba(11,25,41,0.1); }
.header-v3 .container { display: flex; align-items: center; height: 72px; gap: 0; }
.logo-v3 { flex-shrink: 0; margin-right: 24px; display: flex; align-items: center; }
.logo-v3 .logo-img { height: 44px; width: auto; max-width: 200px; object-fit: contain; }

.header-search-v3 { flex: 1; max-width: 520px; margin: 0 20px; }
.header-search-v3 form { display: flex; flex-direction: column; background: var(--white); border: 2px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.header-search-v3 form:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,68,14,0.08); }
.search-tabs { display: flex; border-bottom: 1px solid var(--border); background: var(--gray-bg); }
.search-tab { flex: 1; padding: 7px 12px; border: none; background: transparent; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); cursor: pointer; transition: all 0.2s; position: relative; }
.search-tab::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.2s; }
.search-tab.active { color: var(--primary-light); background: var(--white); }
.search-tab.active::after { transform: scaleX(1); }
.search-tab:hover { color: var(--dark); }
.search-input-wrap { display: flex; align-items: center; padding: 0; }
.search-icon { width: 18px; height: 18px; margin-left: 14px; color: var(--text-light); flex-shrink: 0; }
.search-input-wrap input[type="search"] { flex: 1; padding: 10px 12px; border: none; background: transparent; font-size: 14px; color: var(--text-primary); outline: none; font-family: 'Inter', sans-serif; min-width: 0; }
.search-input-wrap input[type="search"]::placeholder { color: var(--text-light); font-size: 13px; }
.search-submit { padding: 10px 20px; background: var(--accent); border: none; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.search-submit:hover { background: var(--accent-hover); }

.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; margin-right: 16px; flex-shrink: 0; }
.header-action-item { display: flex; align-items: center; gap: 6px; padding: 8px 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.3px; color: var(--text-secondary); border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
.header-action-item:hover { color: var(--accent); background: rgba(232,68,14,0.06); }
.header-action-item .icon { width: 16px; height: 16px; }

.nav-menu-v3 { display: flex; align-items: center; gap: 2px; margin-left: 0; }
.nav-menu-v3 a { padding: 8px 14px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.3px; border-radius: 6px; position: relative; white-space: nowrap; }
.nav-menu-v3 a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--accent); border-radius: 3px 3px 0 0; transition: width 0.25s ease; }
.nav-menu-v3 a:hover::after, .nav-menu-v3 a.active::after { width: 60%; }
.nav-menu-v3 a:hover { color: var(--primary-light); }

.mobile-search-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; color: var(--text-primary); border-radius: 8px; transition: background 0.2s; margin-right: 4px; }
.mobile-search-toggle:hover { background: var(--gray-bg); }
.mobile-search-toggle .icon { width: 20px; height: 20px; }

.mobile-search-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 2000; background: var(--white); padding: 16px; box-shadow: 0 4px 20px rgba(11,25,41,0.15); animation: slideDown 0.25s ease; }
.mobile-search-overlay.active { display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-search-inner form { display: flex; flex-direction: column; gap: 12px; }
.mobile-search-field { display: flex; align-items: center; gap: 10px; background: var(--gray-bg); border: 2px solid var(--border); border-radius: 8px; padding: 0 14px; transition: border-color 0.2s; }
.mobile-search-field:focus-within { border-color: var(--accent); }
.mobile-search-field .icon { width: 18px; height: 18px; color: var(--text-light); flex-shrink: 0; }
.mobile-search-field input { flex: 1; padding: 12px 0; border: none; background: transparent; font-size: 15px; color: var(--text-primary); outline: none; }
.mobile-search-field input::placeholder { color: var(--text-light); }
.mobile-search-close { background: none; border: none; cursor: pointer; padding: 4px; color: var(--text-light); display: flex; align-items: center; }
.mobile-search-close .icon { width: 20px; height: 20px; }
.mobile-search-btn { width: 100%; justify-content: center; padding: 14px; }

@media (max-width: 1024px) { .header-search-v3 { max-width: 320px; } .header-actions { gap: 0; margin-right: 8px; } .header-action-item { padding: 8px 10px; font-size: 11px; } }
@media (max-width: 768px) { .topbar-v3 .topbar-left { display: none; } .topbar-tagline-v3 { display: none; } .topbar-sep { display: none; } .header-v3 .container { height: 60px; } .logo-v3 { margin-right: auto; } .logo-v3 .logo-img { height: 36px; max-width: 150px; } .header-search-v3 { display: none; } .header-actions { display: none; } .nav-menu-v3 { display: none; } .mobile-search-toggle { display: flex; } .hamburger { display: flex; } .nav-menu-v3.mobile-active { display: flex !important; flex-direction: column; align-items: center; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 1000; padding: 60px 20px 24px; gap: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; } }


/* ============================================================
   FOOTER v3 — Redesigned Modern Footer
   ============================================================ */

.footer-cta-band { background: linear-gradient(135deg, var(--primary-light) 0%, var(--dark) 100%); padding: 0; position: relative; overflow: hidden; }
.footer-cta-band::before { content: ''; position: absolute; top: -50%; right: -5%; width: 400px; height: 200%; background: rgba(232,68,14,0.04); transform: rotate(12deg); pointer-events: none; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 40px 0; position: relative; z-index: 2; }
.footer-cta-text h3 { font-size: 24px; color: var(--white); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; font-weight: 800; }
.footer-cta-text p { font-size: 15px; color: rgba(255,255,255,0.65); margin: 0; }
.footer-cta-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cta-footer { padding: 14px 28px; font-size: 14px; }
.btn-whatsapp-footer { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: #25D366; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; border-radius: var(--radius); transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.3px; border: 2px solid #25D366; }
.btn-whatsapp-footer:hover { background: #1da851; border-color: #1da851; }
.btn-whatsapp-footer .icon { width: 16px; height: 16px; }

.footer-v3 { background: var(--dark); color: rgba(255,255,255,0.6); padding: 56px 0 0; }
.footer-grid-v3 { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-v3 .footer-logo { display: inline-flex; margin-bottom: 16px; }
.footer-brand-v3 .footer-logo .logo-img { height: 40px; max-width: 180px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; transition: opacity 0.2s; }
.footer-brand-v3 .footer-logo:hover .logo-img { opacity: 1; }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-trust-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.trust-badge-item { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s; }
.trust-badge-item:hover { border-color: var(--accent); color: var(--accent); }
.trust-badge-item .icon { width: 13px; height: 13px; }
.footer-social-v3 { display: flex; gap: 8px; }
.footer-social-v3 a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.footer-social-v3 a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-social-v3 a i { width: 16px; height: 16px; }
.footer-heading { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 3px; background: var(--accent); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: all 0.2s; display: inline-flex; align-items: center; gap: 0; }
.footer-links a::before { content: ''; display: inline-block; width: 0; height: 1px; background: var(--accent); margin-right: 0; transition: all 0.2s; }
.footer-links a:hover { color: var(--accent); padding-left: 0; }
.footer-links a:hover::before { width: 12px; margin-right: 6px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-v3 { display: flex; align-items: flex-start; gap: 12px; }
.fc-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon .icon { width: 14px; height: 14px; color: rgba(255,255,255,0.5); }
.fc-icon.fc-whatsapp { background: rgba(37,211,102,0.15); }
.fc-icon.fc-whatsapp .icon { color: #25D366; }
.fc-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; padding-top: 5px; }
.fc-text a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.fc-text a:hover { color: var(--accent); }
.footer-bottom-v3 { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }
.legal-sep { color: rgba(255,255,255,0.15); }

@media (max-width: 1024px) { .footer-grid-v3 { grid-template-columns: 1fr 1fr; gap: 36px; } .footer-brand-v3 { grid-column: span 2; } }
@media (max-width: 768px) { .footer-cta-inner { flex-direction: column; text-align: center; padding: 32px 0; gap: 20px; } .footer-cta-actions { flex-direction: column; width: 100%; gap: 10px; } .btn-cta-footer, .btn-whatsapp-footer { width: 100%; justify-content: center; padding: 12px 20px; } .footer-grid-v3 { grid-template-columns: 1fr; gap: 32px; } .footer-brand-v3 { grid-column: span 1; } .footer-bottom-v3 { flex-direction: column; text-align: center; gap: 8px; } }
@media (max-width: 480px) { .footer-cta-text h3 { font-size: 20px; } .footer-trust-badges { justify-content: center; } .footer-social-v3 { justify-content: center; } }


/* ============================================================
   PAGE HERO v3 — Unified page header
   ============================================================ */
.page-hero-v3 {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--dark) 100%);
    padding: 48px 0 32px;
    position: relative;
    overflow: hidden;
}
.page-hero-v3::before {
    content: '';
    position: absolute;
    top: -30%; right: -5%;
    width: 500px; height: 160%;
    background: rgba(232,68,14,0.03);
    transform: rotate(12deg);
    pointer-events: none;
}
.page-hero-v3 .container { position: relative; z-index: 2; }
.page-hero-v3 .breadcrumb { margin-bottom: 16px; }
.page-hero-v3 .breadcrumb a { color: rgba(255,255,255,0.5); font-size: 13px; }
.page-hero-v3 .breadcrumb a:hover { color: var(--accent); }
.page-hero-v3 .breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero-v3-content h1 { font-size: 32px; color: var(--white); margin-bottom: 8px; font-weight: 800; }
.page-hero-v3-content h1 span { color: var(--accent); }
.page-hero-v3-content p { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 600px; }
.page-hero-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.hero-pill {
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}
.hero-pill:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.hero-pill.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

@media (max-width: 768px) {
    .page-hero-v3 { padding: 32px 0 20px; }
    .page-hero-v3-content h1 { font-size: 22px; }
    .page-hero-v3-content p { font-size: 13px; }
    .page-hero-pills { gap: 6px; }
    .hero-pill { padding: 5px 12px; font-size: 11px; }
}


/* ============================================================
   TOOLBAR v3 — Product list toolbar
   ============================================================ */
.toolbar-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: var(--gray-bg);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}
.toolbar-v3 strong { color: var(--dark); font-weight: 600; }
.toolbar-right { display: flex; align-items: center; gap: 8px; }
.toolbar-sort-label { color: var(--text-light); display: flex; }
.toolbar-sort-label .icon { width: 16px; height: 16px; }


/* ============================================================
   SIDEBAR CTA BLOCK — Help card in sidebar
   ============================================================ */
.sidebar-cta-block {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--dark) 100%);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.sidebar-cta-inner {
    padding: 28px 20px;
    text-align: center;
}
.sidebar-cta-icon {
    width: 48px; height: 48px;
    background: rgba(232,68,14,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sidebar-cta-icon .icon { width: 22px; height: 22px; color: var(--accent); }
.sidebar-cta-inner h4 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.sidebar-cta-inner p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; line-height: 1.5; }
.btn-sidebar { display: block; text-align: center; padding: 10px 16px; font-size: 13px; margin-bottom: 10px; }
.btn-whatsapp-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-whatsapp-sidebar:hover { background: #1da851; }
.btn-whatsapp-sidebar .icon { width: 14px; height: 14px; }


/* ============================================================
   NO RESULTS
   ============================================================ */
.no-results {
    text-align: center;
    padding: 80px 24px;
}
.no-results .icon { width: 48px; height: 48px; color: var(--text-light); margin-bottom: 16px; }
.no-results h3 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.no-results p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }


/* ============================================================
   CTA BANNER v3 — Bottom CTA
   ============================================================ */
.cta-banner-v3 {
    background: var(--dark);
    padding: 48px 0;
    margin-top: 40px;
}
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.cta-banner-text h2 { font-size: 24px; color: var(--white); margin-bottom: 6px; }
.cta-banner-text p { font-size: 14px; color: rgba(255,255,255,0.6); }
.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius);
    transition: background 0.2s;
    border: 2px solid #25D366;
}
.btn-whatsapp-cta:hover { background: #1da851; border-color: #1da851; }
.btn-whatsapp-cta .icon { width: 16px; height: 16px; }

@media (max-width: 768px) {
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-actions { flex-direction: column; width: 100%; }
    .cta-banner-actions a { width: 100%; justify-content: center; }
}


/* ============================================================
   LOAD MORE BUTTON v3
   ============================================================ */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.btn-load-more:hover { background: var(--accent); color: var(--white); }
.btn-load-more .icon { width: 16px; height: 16px; }


/* ============================================================
   SECTION HEADER v3
   ============================================================ */
.section-header-v3 {
    text-align: center;
    margin-bottom: 36px;
}
.section-header-v3 h2 { font-size: 28px; color: var(--dark); margin-bottom: 8px; }
.section-header-v3 h2 span { color: var(--accent); }
.section-header-v3 p { font-size: 14px; color: var(--text-secondary); }
.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.6); }


/* ============================================================
   PRODUCT DETAIL v3 — pd-*
   ============================================================ */
.breadcrumb-bar {
    background: var(--gray-bg);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb-bar .breadcrumb { margin: 0; }

.pd-layout {
    display: flex;
    gap: 40px;
    padding: 32px 0 40px;
}
.pd-gallery { flex: 1; min-width: 0; }
.pd-info { width: 440px; flex-shrink: 0; }
.pd-info-sticky { position: sticky; top: 88px; }

/* Gallery */
.pd-gallery-main {
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-gallery-main img { width: 100%; height: 100%; object-fit: contain; cursor: zoom-in; }
.pd-gallery-placeholder { text-align: center; color: var(--text-light); }
.pd-gallery-placeholder i { width: 48px; height: 48px; opacity: 0.3; }
.pd-badge-hot {
    position: absolute;
    top: 12px; left: 12px;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pd-badge-hot .icon { width: 12px; height: 12px; }

.pd-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.pd-thumb {
    width: 72px; height: 72px;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--accent); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info */
.pd-title { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.pd-meta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pd-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}
.pd-meta-tag .icon { width: 12px; height: 12px; }
.pd-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }

/* Quick Specs */
.pd-quick-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.pd-qs-item {
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}
.pd-qs-val { display: block; font-size: 16px; font-weight: 700; color: var(--dark); font-family: 'Montserrat', sans-serif; }
.pd-qs-label { display: block; font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.3px; margin-top: 2px; }

/* Badges */
.pd-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-bg);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}
.pd-badge-item .icon { width: 14px; height: 14px; }
.pd-badge-cert { background: rgba(16,185,129,0.08); color: var(--oem-green); }

/* Actions */
.pd-actions { margin-bottom: 16px; }
.pd-btn-primary { display: flex; justify-content: center; width: 100%; padding: 14px; font-size: 15px; margin-bottom: 10px; }
.pd-actions-row { display: flex; gap: 8px; }
.pd-btn-spec { flex: 1; justify-content: center; padding: 10px 14px; font-size: 12px; }
.btn-whatsapp-pd {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: #25D366;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    border: 2px solid #25D366;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.btn-whatsapp-pd:hover { background: #1da851; border-color: #1da851; }
.btn-whatsapp-pd .icon { width: 14px; height: 14px; }

/* Trust */
.pd-trust {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.pd-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-light);
}
.pd-trust-item .icon { width: 13px; height: 13px; color: var(--oem-green); }

/* Tabs */
.pd-tabs { padding: 0 0 40px; }
.pd-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}
.pd-tab-nav button {
    padding: 12px 20px;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.pd-tab-nav button::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s;
}
.pd-tab-nav button.active { color: var(--dark); }
.pd-tab-nav button.active::after { transform: scaleX(1); }
.pd-tab-nav button:hover { color: var(--dark); }
.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; }

/* Spec Table */
.pd-spec-table { width: 100%; border-collapse: collapse; }
.pd-spec-table thead th {
    background: var(--primary-light);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}
.pd-spec-table tbody td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.pd-spec-table tbody tr:nth-child(even) { background: var(--gray-bg); }
.pd-spec-table tbody td:first-child { font-weight: 600; color: var(--dark); width: 40%; }
.pd-no-data { text-align: center; padding: 40px; color: var(--text-light); font-size: 14px; }

/* Features Grid */
.pd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.pd-feature-card {
    padding: 24px;
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}
.pd-feature-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.pd-feature-icon {
    width: 40px; height: 40px;
    background: rgba(232,68,14,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.pd-feature-icon i { width: 20px; height: 20px; color: var(--accent); }
.pd-feature-card h4 { font-size: 14px; color: var(--dark); margin-bottom: 6px; }
.pd-feature-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* Gallery Grid */
.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pd-gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray-bg);
    cursor: zoom-in;
}
.pd-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.pd-gallery-item:hover img { transform: scale(1.05); }

/* Article body inside product */
.pd-article-body h2 { font-size: 22px; color: var(--dark); margin: 28px 0 14px; padding-left: 14px; border-left: 4px solid var(--accent); }
.pd-article-body h3 { font-size: 18px; color: var(--dark); margin: 20px 0 10px; }
.pd-article-body p { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 14px; }
.pd-article-body ul, .pd-article-body ol { margin: 14px 0; padding-left: 20px; }
.pd-article-body li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }

/* Related Section */
.related-section { padding: 40px 0; background: var(--gray-bg); }
.related-section .section-header-v3 { margin-bottom: 24px; }

@media (max-width: 1024px) {
    .pd-layout { flex-direction: column; gap: 24px; }
    .pd-info { width: 100%; }
    .pd-info-sticky { position: static; }
    .pd-features-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pd-title { font-size: 20px; }
    .pd-quick-specs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .pd-actions-row { flex-direction: column; }
    .pd-trust { flex-direction: column; gap: 8px; }
    .pd-tab-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .pd-tab-nav::-webkit-scrollbar { display: none; }
    .pd-tab-nav button { white-space: nowrap; flex-shrink: 0; padding: 10px 14px; font-size: 12px; }
    .pd-features-grid { grid-template-columns: 1fr; }
    .pd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   CATALOG PAGE v3
   ============================================================ */
.catalog-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 40px 0;
}
.catalog-card-v3 {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}
.catalog-card-v3:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}
.catalog-card-img {
    aspect-ratio: 16/10;
    background: var(--gray-bg);
    position: relative;
    overflow: hidden;
}
.catalog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.catalog-card-v3:hover .catalog-card-img img { transform: scale(1.05); }
.catalog-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light);
}
.catalog-card-placeholder i { width: 40px; height: 40px; opacity: 0.3; }
.catalog-card-count {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 12px;
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}
.catalog-card-body { padding: 20px; }
.catalog-card-body h3 { font-size: 16px; margin-bottom: 6px; }
.catalog-card-body h3 a { color: var(--dark); }
.catalog-card-body h3 a:hover { color: var(--accent); }
.catalog-card-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px; }
.catalog-subcats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.catalog-subcat {
    padding: 3px 10px;
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    font-size: 11px;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.catalog-subcat:hover { border-color: var(--accent); color: var(--accent); }
.catalog-subcat-more { padding: 3px 10px; font-size: 11px; color: var(--text-light); }
.btn-catalog { width: 100%; justify-content: center; padding: 10px; font-size: 13px; }

.page-content-v3 { padding: 0 0 40px; }
.page-content-v3 h2 { font-size: 24px; color: var(--dark); margin: 32px 0 16px; }
.page-content-v3 p { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 14px; }

@media (max-width: 1024px) { .catalog-grid-v3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .catalog-grid-v3 { grid-template-columns: 1fr; gap: 16px; } }


/* ============================================================
   CONTACT PAGE v3
   ============================================================ */
.contact-section-v3 { padding: 0; }
.contact-layout-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}
.contact-info-side {
    background: var(--gray-bg);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-side h2 { font-size: 28px; color: var(--dark); margin-bottom: 12px; }
.contact-intro { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 28px; }
.contact-cards-v3 { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-card-v3 {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s;
}
.contact-card-v3:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.cc-icon {
    width: 42px; height: 42px;
    background: rgba(232,68,14,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cc-icon i { width: 20px; height: 20px; color: var(--accent); }
.cc-icon.cc-whatsapp { background: rgba(37,211,102,0.1); }
.cc-icon.cc-whatsapp i { color: #25D366; }
.cc-body h4 { font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.cc-body p { font-size: 13px; color: var(--text-secondary); margin: 0; }
.cc-body a { color: var(--text-secondary); }
.cc-body a:hover { color: var(--accent); }

.contact-trust-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.ct-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}
.ct-item .icon { width: 14px; height: 14px; color: var(--oem-green); }

/* Form Side */
.contact-form-side {
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-card {
    width: 100%;
    max-width: 480px;
}
.contact-form-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-form-card h3 .icon { width: 20px; height: 20px; color: var(--accent); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cf-field { display: flex; flex-direction: column; }
.cf-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.cf-field input, .cf-field select, .cf-field textarea {
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    transition: border-color 0.2s;
    outline: none;
    background: var(--white);
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,68,14,0.06);
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--text-light); }
.cf-field textarea { min-height: 80px; resize: vertical; }
.cf-field select { cursor: pointer; }
.cf-submit { width: 100%; justify-content: center; padding: 14px; font-size: 15px; margin-top: 8px; }
.cf-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 12px;
}
.cf-privacy .icon { width: 11px; height: 11px; }

@media (max-width: 1024px) {
    .contact-layout-v3 { grid-template-columns: 1fr; }
    .contact-info-side { padding: 40px 32px; }
    .contact-form-side { padding: 40px 32px; }
}
@media (max-width: 768px) {
    .contact-info-side { padding: 32px 20px; }
    .contact-form-side { padding: 32px 20px; }
    .contact-info-side h2 { font-size: 22px; }
    .cf-row { grid-template-columns: 1fr; }
    .contact-trust-v3 { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOG v3 — page-blog + single
   ============================================================ */
.blog-layout-v3 {
    display: flex;
    gap: 36px;
    padding: 32px 0 40px;
}
.blog-main-v3 { flex: 1; min-width: 0; }
.blog-sidebar-v3 { width: 300px; flex-shrink: 0; }

/* Featured Post v3 */
.featured-post-v3 {
    display: flex;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
    transition: all 0.3s;
}
.featured-post-v3:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.fpv3-img {
    width: 45%;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}
.fpv3-img img { width: 100%; height: 100%; object-fit: cover; }
.fpv3-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--gray-bg); color: var(--text-light); }
.fpv3-placeholder i { width: 36px; height: 36px; }
.fpv3-cat {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fpv3-body {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fpv3-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-light);
}
.fpv3-meta .icon { width: 13px; height: 13px; }
.fpv3-body h2 { font-size: 22px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.fpv3-body h2 a { color: var(--dark); }
.fpv3-body h2 a:hover { color: var(--accent); }
.fpv3-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--accent);
    transition: gap 0.2s;
}
.btn-read-more:hover { gap: 10px; }
.btn-read-more .icon { width: 14px; height: 14px; }

/* Post Grid v3 */
.post-grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.post-card-v3 {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}
.post-card-v3:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.pcv3-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray-bg);
}
.pcv3-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card-v3:hover .pcv3-img img { transform: scale(1.05); }
.pcv3-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-light); }
.pcv3-placeholder i { width: 28px; height: 28px; }
.pcv3-body { padding: 18px; }
.pcv3-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 11px; color: var(--text-light); }
.pcv3-cat {
    padding: 2px 8px;
    background: rgba(232,68,14,0.08);
    color: var(--accent);
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.pcv3-body h3 { font-size: 15px; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.pcv3-body h3 a { color: var(--dark); }
.pcv3-body h3 a:hover { color: var(--accent); }
.pcv3-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px; }
.pcv3-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-light);
    transition: color 0.2s;
}
.pcv3-link:hover { color: var(--accent); }
.pcv3-link .icon { width: 12px; height: 12px; }

/* Popular Posts v3 */
.popular-item-v3 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.popular-item-v3:last-child { border-bottom: none; }
.popular-item-v3:hover { background: var(--gray-bg); }
.popular-rank {
    width: 28px; height: 28px;
    background: var(--gray-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    color: var(--text-light);
    flex-shrink: 0;
}
.popular-item-v3:first-child .popular-rank { background: var(--accent); color: var(--white); }
.popular-info h4 { font-size: 13px; color: var(--dark); margin-bottom: 2px; line-height: 1.3; }
.popular-info span { font-size: 11px; color: var(--text-light); }

/* Article v3 */
.article-layout-v3 {
    display: flex;
    gap: 36px;
    padding: 24px 0 40px;
}
.article-main-v3 { flex: 1; min-width: 0; }

.article-header-v3 { margin-bottom: 24px; }
.article-cat {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(232,68,14,0.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.article-header-v3 h1 { font-size: 30px; color: var(--dark); line-height: 1.3; margin-bottom: 12px; }
.article-meta-v3 {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}
.article-meta-v3 .icon { width: 14px; height: 14px; }
.article-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
}
.article-featured-img img { width: 100%; display: block; }

.article-body-v3 { padding: 0 0 24px; }
.article-body-v3 h2 { font-size: 22px; color: var(--dark); margin: 32px 0 14px; padding-left: 14px; border-left: 4px solid var(--accent); }
.article-body-v3 h3 { font-size: 18px; color: var(--dark); margin: 24px 0 10px; }
.article-body-v3 p { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.article-body-v3 ul, .article-body-v3 ol { margin: 16px 0; padding-left: 20px; }
.article-body-v3 li { font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.article-body-v3 img { max-width: 100%; border-radius: 8px; margin: 20px 0; }
.article-body-v3 blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--gray-bg);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-secondary);
}
.article-body-v3 table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.article-body-v3 table th { background: var(--primary-light); color: var(--white); padding: 10px 14px; text-align: left; font-size: 13px; }
.article-body-v3 table td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 14px; }
.article-body-v3 table tr:nth-child(even) { background: var(--gray-bg); }

/* Tags */
.article-tags-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}
.at-label { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.at-label .icon { width: 12px; height: 12px; }
.at-tag {
    padding: 3px 10px;
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    font-size: 11px;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.at-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Share Bar v3 */
.share-bar-v3 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.share-bar-v3 > span { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.share-btn-v3 {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s;
}
.share-btn-v3 i { width: 16px; height: 16px; }
.share-btn-v3:hover { transform: translateY(-2px); }
.share-facebook { background: #1877F2; }
.share-linkedin { background: #0A66C2; }
.share-whatsapp { background: #25D366; }

/* Article CTA v3 */
.article-cta-v3 {
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin: 32px 0;
}
.article-cta-icon {
    width: 52px; height: 52px;
    background: rgba(232,68,14,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.article-cta-icon .icon { width: 24px; height: 24px; color: var(--accent); }
.article-cta-v3 h3 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.article-cta-v3 p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.article-cta-actions { display: flex; gap: 12px; justify-content: center; }

@media (max-width: 1024px) {
    .blog-layout-v3 { flex-direction: column; }
    .blog-sidebar-v3 { width: 100%; display: flex; gap: 16px; flex-wrap: wrap; }
    .blog-sidebar-v3 .sidebar-block { flex: 1; min-width: 260px; }
    .article-layout-v3 { flex-direction: column; }
    .blog-sidebar-v3 { width: 100%; }
}
@media (max-width: 768px) {
    .featured-post-v3 { flex-direction: column; }
    .fpv3-img { width: 100%; min-height: 200px; }
    .fpv3-body { padding: 20px; }
    .fpv3-body h2 { font-size: 18px; }
    .post-grid-v3 { grid-template-columns: 1fr; }
    .article-header-v3 h1 { font-size: 24px; }
    .article-meta-v3 { flex-wrap: wrap; gap: 12px; }
    .article-cta-actions { flex-direction: column; }
    .article-cta-actions a { width: 100%; justify-content: center; }
}


/* ============================================================
   PARTS SEARCH SECTION — Homepage search bar
   ============================================================ */
.parts-search {
    background: var(--gray-bg);
    position: relative;
}
.ps-form {
    max-width: 800px;
    margin: 0 auto;
}
.ps-form form {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ps-form form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232,68,14,0.06);
}
.ps-row {
    display: flex;
    align-items: center;
    gap: 0;
}
.ps-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    min-width: 0;
}
.ps-icon {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    flex-shrink: 0;
    margin-right: 10px;
}
.ps-input {
    flex: 1;
    padding: 16px 0;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    outline: none;
    min-width: 0;
}
.ps-input::placeholder { color: var(--text-light); }
.ps-cat-wrap {
    border-left: 1px solid var(--border);
    flex-shrink: 0;
}
.ps-cat-select {
    padding: 16px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A6A7E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    min-width: 160px;
}
.ps-btn {
    padding: 16px 28px;
    border-radius: 0 10px 10px 0;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Quick tags */
.ps-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.ps-tags-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}
.ps-tag {
    padding: 5px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s;
}
.ps-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(232,68,14,0.04);
}

@media (max-width: 768px) {
    .ps-row { flex-direction: column; }
    .ps-input-wrap { width: 100%; padding: 0 14px; }
    .ps-input { padding: 14px 0; font-size: 14px; }
    .ps-cat-wrap {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .ps-cat-select { width: 100%; padding: 12px 14px; }
    .ps-btn {
        width: 100%;
        border-radius: 0 0 10px 10px;
        padding: 14px;
        justify-content: center;
    }
    .ps-tags { gap: 6px; }
    .ps-tag { padding: 4px 12px; font-size: 11px; }
}


/* ============================================================
   HERO v4 — Full-width dark gradient, no image dependency
   ============================================================ */
.hero-v4 {
    position: relative;
    padding: 80px 0 0;
    background: var(--dark);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-v4 .container {
    position: relative;
    z-index: 3;
}

/* Background image (optional, behind gradient) */
.hero-v4-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Background layers */
.hero-v4-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,25,41,0.88) 0%, rgba(13,33,55,0.82) 40%, rgba(19,43,69,0.78) 70%, rgba(11,25,41,0.90) 100%);
    z-index: 1;
}
.hero-v4-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-v4-glow {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,68,14,0.08) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Content */
.hero-v4-content {
    max-width: 720px;
    padding: 20px 0 48px;
}

/* Badge */
.hero-v4-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(232,68,14,0.12);
    border: 1px solid rgba(232,68,14,0.25);
    border-radius: 24px;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: hv4FadeUp 0.6s ease-out 0.1s both;
}
.hero-v4-badge .icon { width: 14px; height: 14px; }

/* Title */
.hero-v4-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    animation: hv4FadeUp 0.6s ease-out 0.2s both;
}
.hero-v4-title span { color: var(--accent); }

/* Subtitle */
.hero-v4-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 580px;
    animation: hv4FadeUp 0.6s ease-out 0.3s both;
}

/* Trust row */
.hero-v4-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: hv4FadeUp 0.6s ease-out 0.35s both;
}
.hero-v4-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.hero-v4-trust-item .icon {
    width: 16px;
    height: 16px;
    color: #10B981;
}

/* Buttons */
.hero-v4-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: hv4FadeUp 0.6s ease-out 0.4s both;
}
.btn-hero-primary-v4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent);
}
.btn-hero-primary-v4:hover {
    background: #CC3A0C;
    border-color: #CC3A0C;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,68,14,0.3);
}
.btn-hero-primary-v4 .icon { width: 16px; height: 16px; }

.btn-hero-secondary-v4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-hero-secondary-v4:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}
.btn-hero-secondary-v4 .icon { width: 16px; height: 16px; }

/* Stats bar */
.hero-v4-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    animation: hv4FadeUp 0.6s ease-out 0.5s both;
}
.hero-v4-stat {
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
}
.hero-v4-stat:last-child { border-right: none; }
.hero-v4-stat:hover { background: rgba(255,255,255,0.03); }
.hv4-stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-v4-stat-lbl {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

/* ====== BRANDS BAR ====== */
.brands-bar {
    background: var(--gray-bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.brands-bar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.brands-bar-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.brands-bar-items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.brands-bar-item {
    padding: 5px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
    white-space: nowrap;
}
.brands-bar-item:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero-v4-title { font-size: 40px; }
    .hero-v4-subtitle { font-size: 15px; }
    .hero-v4-stat { padding: 20px 12px; }
    .hv4-stat-num { font-size: 26px; }
}

@media (max-width: 768px) {
    .hero-v4 { padding: 56px 0 0; min-height: auto; }
    .hero-v4-content { padding: 0 0 32px; }
    .hero-v4-title { font-size: 30px; line-height: 1.15; }
    .hero-v4-subtitle { font-size: 14px; margin-bottom: 20px; }
    .hero-v4-trust { flex-direction: column; gap: 10px; }
    .hero-v4-trust-item { font-size: 12px; }
    .hero-v4-actions { flex-direction: column; gap: 10px; }
    .btn-hero-primary-v4,
    .btn-hero-secondary-v4 {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
    }
    .hero-v4-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-v4-stat {
        padding: 18px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .hero-v4-stat:nth-child(2) { border-right: none; }
    .hv4-stat-num { font-size: 24px; }
    .hero-v4-stat-lbl { font-size: 11px; letter-spacing: 0.5px; }

    .brands-bar-inner { flex-direction: column; gap: 10px; align-items: flex-start; }
    .brands-bar-items { gap: 6px; }
    .brands-bar-item { padding: 4px 12px; font-size: 11px; }
}

@media (max-width: 480px) {
    .hero-v4-title { font-size: 26px; }
    .hero-v4-badge { font-size: 11px; padding: 5px 14px; }
    .hero-v4-stats { grid-template-columns: repeat(2, 1fr); }
}
