/* ============================================
   Tongtrailer Main Stylesheet
   Compiled from HTML design drafts
   ============================================ */

/* ====== CSS VARIABLES ====== */
:root {
  --yellow: #FFB800;
  --yellow-hover: #E5A600;
  --blue: #1A3D6D;
  --blue-light: #2A5A9E;
  --dark: #1A1A1A;
  --dark-2: #222222;
  --gray-bg: #F5F5F5;
  --gray-card: #FFFFFF;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text: #333333;
  --text-light: #999999;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --max-width: 1280px;
  --sidebar-width: 280px;
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', 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; }

/* ====== 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;
}
.yellow-line {
  display: inline-block;
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 4px;
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background: transparent;
  color: var(--yellow);
}
.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(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-dark:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

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

/* ====== HEADER / NAVIGATION ====== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,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(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  font-weight: 900;
}
.logo span { color: var(--yellow); }
.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(--yellow);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 60%; }
.nav-menu a:hover { color: var(--blue); }
.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(--blue) 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(255,184,0,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(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 12px; }
.breadcrumb .current { color: var(--yellow); font-size: 13px; font-weight: 600; }
.page-hero h1 { font-size: 36px; color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--yellow); }
.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(--blue);
  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(255,184,0,0.06);
  color: var(--blue);
  border-left-color: var(--yellow);
  padding-left: 24px;
}
.sidebar-category-list a .icon { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-category-list a.active .icon { color: var(--yellow); }
.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(--yellow);
  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(--yellow);
  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(--yellow); }
.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(--yellow);
  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(--yellow); }
.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(--yellow);
}
.stat-card .number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  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(--yellow);
  transform: translateY(-4px);
}
.value-card i {
  width: 36px;
  height: 36px;
  color: var(--yellow);
  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(--yellow);
  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(--yellow);
}
.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(--yellow);
}
.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(--yellow);
  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(--yellow);
  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(--yellow); }
.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(--yellow); }

/* ====== 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: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26,61,109,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(26,61,109,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(255,184,0,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(255,184,0,0.15);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 30px;
  color: var(--yellow);
  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(--yellow); }
.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(--yellow);
  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(255,184,0,0.3), transparent 50%, rgba(26,61,109,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(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.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(255,184,0,0.15) 0%, rgba(26,61,109,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(--yellow);
  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(--blue);
  transition: var(--transition);
}
.category-card:hover .view-link { color: var(--yellow); }
.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(--yellow);
  transform: scaleX(0);
  transition: var(--transition);
}
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.advantage-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(255,184,0,0.15);
  position: absolute;
  top: 12px;
  right: 20px;
}
.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255,184,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-icon i { width: 28px; height: 28px; color: var(--yellow-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);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-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-img { transform: scale(1.05); }
.product-img i { width: 36px; height: 36px; }
.product-img::after {
  content: 'View Details';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: var(--yellow);
  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-img::after { transform: translateY(0); }
.product-info { padding: 20px; }
.product-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(26,61,109,0.08);
  color: var(--blue);
  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(255,184,0,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(--yellow); }
.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(255,184,0,0.08);
  border: 2px dashed rgba(255,184,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-icon i { width: 60px; height: 60px; color: var(--yellow); 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(255,184,0,0.1);
  color: var(--yellow-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(--blue);
  transition: var(--transition);
}
.blog-read-more:hover { color: var(--yellow); gap: 10px; }
.blog-read-more i { width: 16px; height: 16px; }

/* ====== GLOBAL REACH ====== */
.global-reach {
  background: linear-gradient(135deg, var(--blue) 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(--yellow); }
.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(255,184,0,0.25);
  stroke: rgba(255,184,0,0.4);
  stroke-width: 0.8;
  animation: mapPulse 3s ease-in-out infinite;
}
.world-map-svg .map-dot {
  fill: var(--yellow);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { fill: rgba(255,184,0,0.2); }
  50% { fill: rgba(255,184,0,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(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

/* ====== 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(--yellow);
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.testimonial-stars i { width: 20px; height: 20px; fill: var(--yellow); color: var(--yellow); }
.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(--yellow);
  width: 30px;
  border-radius: 5px;
}

/* ====== LIGHTBOX ====== */
.trailx-lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.trailx-lightbox.active {
  display: flex;
}
.lightbox-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,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(255,184,0,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(--yellow);
  color: var(--yellow);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: var(--transition);
  font-size: 15px;
}
.load-more-wrap .btn-outline:hover {
  background: var(--yellow);
  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(--yellow, #FFB800);
  color: var(--yellow, #FFB800);
  background: rgba(255,184,0,0.05);
}
.page-numbers.current {
  background: var(--yellow, #FFB800);
  border-color: var(--yellow, #FFB800);
  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(--blue);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 200%;
  background: rgba(255,184,0,0.04);
  transform: rotate(-15deg);
}
.contact-section .container { position: relative; z-index: 2; overflow: hidden; }
.contact-section h2 {
  font-size: 36px;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}
.contact-section h2 span { color: var(--yellow); }
.contact-section > .container > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 40px;
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-sizing: border-box;
  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: 'Open Sans', 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(--yellow);
  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(--yellow); 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(--yellow);
}
.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(--yellow); 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(--yellow); }

/* ====== 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(0,0,0,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(255,184,0,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(--yellow-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(--yellow);
  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(0,0,0,0.2);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--yellow); 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;
  }
  .nav-menu.mobile-active a {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
  }
  .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(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-toc ul li a:hover { color: var(--yellow); }
.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(--blue);
  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(--blue) 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(--yellow); }
.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(--blue); }
.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(--yellow); }
.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(--blue) 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(--yellow);
  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(--yellow);
  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(--blue); }
.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(--blue);
  transition: var(--transition);
}
.read-more:hover {
  color: var(--yellow);
  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(255,184,0,0.1);
  color: var(--yellow-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(--blue); }
.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(--yellow);
  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(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.load-more button:hover,
.load-more .btn-outline:hover {
  background: var(--blue);
  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(--yellow);
  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(--yellow);
  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(0,0,0,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(255,184,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-consent-icon i {
  width: 24px;
  height: 24px;
  color: var(--yellow);
}
.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(--yellow);
  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(--yellow);
  color: var(--dark);
}
.cookie-btn-accept:hover {
  background: var(--yellow-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(--yellow);
  color: var(--yellow);
}
.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(--yellow);
  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(--yellow);
  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(--blue);
}

/* 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(0,0,0,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(--yellow);
  background: rgba(255,184,0,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 > a {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .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;
    padding: 0 0 0 16px;
    display: 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 > a {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .nav-menu .nav-menu-list > li > ul.sub-menu > li > a:hover {
    padding-left: 8px;
    background: none;
  }
}

/* ====== 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(0,0,0,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(255,184,0,0.08);
  color: #FFB800;
}

/* Mobile fallback dropdown */
@media (max-width: 768px) {
  .nav-menu .menu-item-has-children > .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-menu .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .nav-menu .menu-item-has-children > .sub-menu li a {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
}

/* ====== 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(--yellow);
  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(--yellow);
}

/* ====== 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(26,61,109,0.06);
  border: 1px solid rgba(26,61,109,0.12);
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--blue);
  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(--blue);
  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(0,0,0,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(--yellow-hover);
  flex-shrink: 0;
  margin-top: 2px;
}
.key-features li strong {
  color: var(--dark);
}

/* ====== 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(--yellow);
  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(26,61,109,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(--yellow);
  transform: translateY(-4px);
}
.feature-card i {
  width: 36px;
  height: 36px;
  color: var(--yellow-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(--blue);
  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(255,184,0,.06);
  color: var(--blue);
  border-left-color: var(--yellow);
  padding-left: 24px;
}
.sidebar-category-list li a.active {
  background: rgba(255,184,0,.1);
  color: var(--blue);
  border-left-color: var(--yellow);
  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(--yellow);
  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(255,184,0,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(--blue);
}
.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(--yellow);
  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(--yellow);
  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(--blue);
}
.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(--blue);
  transition: var(--transition);
}
.read-more:hover {
  color: var(--yellow);
  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(255,184,0,.1);
  color: var(--yellow-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(--blue);
}
.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(--yellow);
  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(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.load-more button:hover,
.load-more .btn-outline:hover {
  background: var(--blue);
  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(--yellow);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 3px;
}
.product-card-img::after {
  content: 'View Details →';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: var(--yellow);
  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);
}
.product-card:hover .product-card-img::after {
  transform: translateY(0);
}

/* ====== 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(--yellow);
  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(255,184,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-icon i {
  width: 40px;
  height: 40px;
  color: var(--yellow);
}
.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(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

/* ====== 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(--yellow);
}
.sidebar-search button {
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.sidebar-search button:hover {
  background: var(--yellow-hover);
}
