/*
Theme Name: MLGFix
Version: 2.0
*/

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --red:       #e63329;
  --red-d:     #c42820;
  --black:     #1a1a1a;
  --white:     #ffffff;
  --g-light:   #f5f5f5;
  --g-mid:     #e8e8e8;
  --g-text:    #666666;
  --g-dark:    #333333;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wrap:      1200px;
  --radius:    10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 8px 24px rgba(0,0,0,.11);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --ease:      .22s ease;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ─── HELPERS ────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ─── ANNOUNCEMENT BAR ───────────────────────── */
.announcement-bar {
  background: var(--black);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .2px;
}
.announcement-bar a { color: var(--white); text-decoration: underline; }

/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--g-mid);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-logo {
  font-size: 21px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.4px;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo span { color: var(--red); }

/* Nav */
.main-nav { flex: 1; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--g-dark);
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.current > a { color: var(--red); background: rgba(230,51,41,.06); }
.nav-arrow { font-size: 11px; opacity: .5; transition: transform var(--ease); }
.main-nav > ul > li:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* Mega dropdown */
.mega-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--g-mid);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  min-width: 480px;
}
.main-nav > ul > li:hover .mega-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-col { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.mega-label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--red);
  margin-bottom: 6px;
}
.mega-drop a {
  font-size: 13.5px;
  color: var(--g-dark);
  padding: 5px 8px;
  border-radius: 5px;
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.mega-drop a:hover { background: var(--g-light); color: var(--red); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hdr-call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--ease), transform var(--ease);
}
.hdr-call:hover { background: var(--red-d); transform: translateY(-1px); color: var(--white); }
.hdr-cart {
  position: relative;
  color: var(--g-dark);
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}
.hdr-cart:hover { color: var(--red); background: var(--g-light); }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  border-radius: 5px;
  transition: background var(--ease);
}
.hamburger:hover { background: var(--g-light); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--ease); }

/* ─── MOBILE NAV ─────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  width: min(340px, 90vw);
  top: 0; left: 0; bottom: 0;
  background: var(--white);
  z-index: 9999;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
  transform: translateX(-100%);
  transition: transform .3s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,.2);
}
.mobile-nav.open { display: flex; transform: translateX(0); }
.mob-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--g-mid);
}
.mob-close {
  font-size: 20px;
  color: var(--g-dark);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: background var(--ease);
}
.mob-close:hover { background: var(--g-light); }
.mobile-nav > ul { padding: 12px 12px 0; flex: 1; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--g-mid); }
.mob-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.mob-toggle span { font-size: 18px; font-weight: 300; color: var(--red); transition: transform .25s; }
.mob-group.open .mob-toggle span { transform: rotate(45deg); }
.mob-sub { display: none; padding: 4px 0 12px 12px; }
.mob-group.open .mob-sub { display: block; }
.mob-sub a { display: block; padding: 8px 8px; font-size: 14px; color: var(--g-dark); border-radius: 5px; transition: background var(--ease), color var(--ease); }
.mob-sub a:hover { background: var(--g-light); color: var(--red); }
.mobile-nav > ul > li > a { display: block; padding: 14px 8px; font-size: 15px; font-weight: 600; color: var(--black); transition: color var(--ease); }
.mobile-nav > ul > li > a:hover { color: var(--red); }
.mob-cta {
  margin: 16px 12px 24px;
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white);
  padding: 13px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background var(--ease);
}
.mob-cta:hover { background: var(--red-d); color: var(--white); }
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
}
.mob-overlay.show { display: block; }

/* ─── HERO SLIDER ────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 1920/620;
}
@media (max-width:768px) { .hero-slider { aspect-ratio: auto; min-height: 340px; } }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .65s ease;
  display: flex;
  align-items: flex-end;
}
.hero-slide.active { opacity: 1; position: relative; }
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 60px 64px;
  max-width: 580px;
  color: var(--white);
}
.hero-content h2 {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
}
.hero-content p {
  font-size: clamp(14px, 1.6vw, 17px);
  opacity: .88;
  margin-bottom: 24px;
  line-height: 1.6;
}
.btn-hero {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 7px;
  font-size: 14.5px;
  font-weight: 700;
  transition: background var(--ease), transform var(--ease);
}
.btn-hero:hover { background: var(--red-d); transform: translateY(-2px); color: var(--white); }
.btn-hero-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.65);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 7px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all var(--ease);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }
.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.hero-prev, .hero-next {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,.38); }
.hero-dots { display: flex; gap: 6px; }
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  transition: all var(--ease);
}
.hero-dot.active { background: var(--white); width: 22px; border-radius: 4px; }

/* ─── TRUST BAR ──────────────────────────────── */
.trust-bar { background: var(--black); padding: 22px 24px; }
.trust-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-item svg { flex-shrink: 0; color: var(--red); }
.trust-item strong { display: block; font-size: 13px; font-weight: 700; }
.trust-item span { font-size: 11.5px; opacity: .55; }

/* ─── SECTION SHARED ─────────────────────────── */
.section-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}
.section-hd h2 { font-size: 22px; font-weight: 800; color: var(--black); }
.view-all-link { font-size: 13px; font-weight: 600; color: var(--red); }
.view-all-link:hover { text-decoration: underline; }

/* ─── CONSOLE SECTION ────────────────────────── */
.console-section { padding: 56px 24px; background: var(--white); }
.console-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.console-card {
  background: var(--g-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 18px 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.console-card:hover {
  border-color: var(--red);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230,51,41,.12);
}
.console-img { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.console-img img { width: 100%; height: 100%; object-fit: contain; }
.console-card span { font-size: 11.5px; font-weight: 600; color: var(--black); line-height: 1.3; }

/* ─── PRODUCTS SECTION ───────────────────────── */
.products-section { padding: 56px 24px; background: var(--g-light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--g-mid);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--g-light);
}
.product-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.img-secondary { opacity: 0; }
.product-card:hover .img-primary { opacity: 0; }
.product-card:hover .img-secondary { opacity: 1; }
.img-placeholder { position: absolute; inset: 0; background: var(--g-mid); }
.product-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.product-info { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.price-now { font-size: 15px; font-weight: 700; color: var(--black); }
.price-was { font-size: 12px; color: var(--g-text); text-decoration: line-through; }
.price-enquire { font-size: 12px; color: var(--g-text); }
.btn-add-cart {
  margin-top: 6px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  transition: background var(--ease);
}
.product-card:hover .btn-add-cart { background: var(--red); }

/* ─── BLOG SECTION ───────────────────────────── */
.blog-section { padding: 56px 24px; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--g-mid);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--g-light); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-img-placeholder { width: 100%; height: 100%; background: var(--g-mid); }
.blog-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-cat { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--red); }
.blog-body h3 { font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--black); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-body p { font-size: 13px; color: var(--g-text); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-date { font-size: 12px; color: var(--g-text); margin-top: auto; }

/* ─── HOME CTA ───────────────────────────────── */
.home-cta { background: var(--black); padding: 72px 24px; text-align: center; }
.home-cta-inner { max-width: 720px; margin: 0 auto; color: var(--white); }
.home-cta-inner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; }
.home-cta-inner p { font-size: 15px; opacity: .8; line-height: 1.8; margin-bottom: 16px; }
.home-cta-meta { font-size: 13px; opacity: .5; margin-bottom: 32px; }
.home-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,.7); padding-top: 56px; }
.footer-top {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 14px; max-width: 260px; }
.footer-brand address { font-size: 12.5px; line-height: 1.9; }
.footer-brand address a { color: rgba(255,255,255,.7); transition: color var(--ease); }
.footer-brand address a:hover { color: var(--white); }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: .38;
  flex-wrap: wrap;
  gap: 6px;
}

/* ─── SHOP ───────────────────────────────────── */
.shop-layout {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
}
.shop-sidebar h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.shop-sidebar ul { display: flex; flex-direction: column; gap: 6px; }
.shop-sidebar a { font-size: 14px; color: var(--g-dark); display: flex; justify-content: space-between; padding: 5px 0; transition: color var(--ease); }
.shop-sidebar a:hover, .shop-sidebar a.active { color: var(--red); font-weight: 600; }
.cat-count { color: var(--g-text); font-size: 12px; }
.shop-main-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.shop-count { font-size: 13px; color: var(--g-text); }

/* ─── BREADCRUMBS ────────────────────────────── */
.breadcrumbs, .lp-bc {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 13px 24px;
  font-size: 12.5px;
  color: var(--g-text);
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumbs a, .lp-bc a { color: var(--g-text); transition: color var(--ease); }
.breadcrumbs a:hover, .lp-bc a:hover { color: var(--red); }

/* ─── SINGLE PRODUCT ─────────────────────────── */
.single-product-layout {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.product-gallery img { width: 100%; border-radius: var(--radius); border: 1px solid var(--g-mid); }
.product-detail h1 { font-size: 24px; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.product-detail .price { font-size: 26px; font-weight: 700; color: var(--red); margin-bottom: 20px; }
.product-detail .description { font-size: 14px; color: var(--g-dark); line-height: 1.8; margin-bottom: 28px; }
.add-to-cart-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 13px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background var(--ease);
  border: none;
  cursor: pointer;
}
.add-to-cart-btn:hover { background: var(--red-d); }

/* ─── PAGE / BLOG SINGLE ─────────────────────── */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px;
}
.page-content h1 { font-size: 32px; font-weight: 800; margin-bottom: 28px; line-height: 1.2; }
.page-content h2 { font-size: 22px; font-weight: 700; margin: 28px 0 14px; }
.page-content p { font-size: 15px; color: var(--g-dark); line-height: 1.85; margin-bottom: 16px; }

/* ─── BUTTONS (global) ───────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--ease), transform var(--ease);
}
.btn-primary:hover { background: var(--red-d); transform: translateY(-1px); color: var(--white); }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  padding: 11px 24px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--ease);
}
.btn-white:hover { background: var(--g-light); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--black);
  color: var(--black);
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--ease);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ─── WC RESETS ──────────────────────────────── */
.woocommerce-page .woocommerce { max-width: var(--wrap); margin: 0 auto; padding: 40px 24px; }
.woocommerce-page .woocommerce-result-count,
.woocommerce-page .woocommerce-ordering { font-size: 13px; color: var(--g-text); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea { border-color: var(--g-mid) !important; border-radius: 6px !important; }
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button { background: var(--red) !important; color: var(--white) !important; border-radius: 6px !important; font-weight: 600 !important; }

/* ─── CONTACT ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--g-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-info-item h3 { font-size: 13px; font-weight: 700; color: var(--g-dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .4px; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--black); line-height: 1.6; }
.contact-info-item a:hover { color: var(--red); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .console-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hdr-call span { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .single-product-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 0 48px 32px; }
}
@media (max-width: 640px) {
  .console-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-content { padding: 0 0 40px 20px; max-width: calc(100% - 40px); }
  .hero-content h2 { font-size: 22px; }
  .home-cta-btns { flex-direction: column; align-items: center; }
  .header-inner { padding: 0 16px; gap: 12px; }
}
