.topbar{background:#111111;color:white;padding:0;height:36px;overflow:hidden;border:none}
.topbar-inner,.topbar-right{display:none}
.tmsg{position:absolute;left:50%;top:50%;transform:translate(-50%,20px);opacity:0;transition:all 0.6s;white-space:nowrap;font-size:0.72rem;letter-spacing:0.1em;text-transform:uppercase;color:rgba(255,255,255,0.85)}
.tmsg.active{opacity:1;transform:translate(-50%,-50%)}










/* ── TOPBAR ── */

/* ═══════════════════════════════════════════
   PRUEVAME INDUSTRIAL — main.css
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-hover: #ef4444;
  --red-glow: rgba(220,38,38,0.15);
  --red-muted: rgba(220,38,38,0.06);
  --black: #111111;
  --bg: #ffffff;
  --surface: #f8f9fa;
  --surface2: #f0f1f3;
  --glass: #ffffff;
  --glass-border: #e5e7eb;
  --text: #111111;
  --text-muted: #6b7280;
  --text-dim: #9ca3af;
  --font-d: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-red: 0 4px 16px rgba(220,38,38,0.3);
  --transition: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-b); }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-d); font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h2 span { color: var(--red); }
h3 { font-size: 1.3rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-red); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--glass-border); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; }

/* ── SECTION ── */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 1rem auto 0; }
.section-tag { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.divider { width: 60px; height: 3px; background: var(--red); border-radius: 2px; margin: 0.75rem auto 0; }
.divider-left { margin-left: 0; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 88px;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--text);
}
.logo span { color: var(--red); }
.footer-logo { font-size: 2rem; }

.nav-search {
  flex: 1;
  max-width: 480px;
  display: flex;
  background: #f3f4f6;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.nav-search:focus-within { border-color: var(--red); background: #fff; }
.nav-search input {
  flex: 1;
  background: none;
  border: none;
  color: var(--text);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  outline: none;
}
.nav-search input::placeholder { color: var(--text-dim); }
.nav-search button {
  background: var(--red);
  border: none;
  color: white;
  padding: 0 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-search button:hover { background: var(--red-dark); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-social {
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-social:hover { color: var(--text); }

.cart-icon-btn {
  position: relative;
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--text);
  width: 40px; height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-icon-btn:hover { border-color: var(--red); color: var(--red); }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--glass-border);
  background: #ffffff;
}
.mobile-nav a {
  padding: 0.85rem 1.5rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--glass-border);
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--text); background: var(--surface); }
.mobile-nav.open { display: flex; }

@media(max-width: 1024px) {
  .nav-links { display: none; }
  .nav-search { max-width: 300px; }
}
@media(max-width: 640px) {
  .hamburger { display: block; }
  .nav-search { display: none; }
  .nav-social { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff5f5 100%);
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
}
.orb1 { width: 500px; height: 500px; background: var(--red); top: -100px; left: -100px; }
.orb2 { width: 400px; height: 400px; background: #dc2626; bottom: -100px; right: -50px; }
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
@media(max-width: 900px){ .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--red-muted);
  border: 1px solid rgba(220,38,38,0.2);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.hero-text h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero-text h1 span:not(.hero-sub) { color: var(--red); }
.hero-sub { display: block; font-size: clamp(2rem, 5vw, 3.5rem); color: var(--text-muted); font-weight: 700; }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--text); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-d); font-size: 1.6rem; font-weight: 900; color: var(--text); line-height: 1; }
.stat span { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }

.hero-img-wrap { display: flex; justify-content: center; }
.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-hover);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
  max-width: 500px;
  width: 100%;
}
.hero-img-card:hover { transform: rotate(0); }
.hero-img-card img { width: 100%; height: auto; display: block; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  opacity: 0.4;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0) } 50%{ transform: translateX(-50%) translateY(8px) } }

/* ── CATEGORIES ── */
.categories-section { background: var(--surface); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.cat-tile {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-card);
  color: var(--text);
}
.cat-tile:hover {
  border-color: rgba(220,38,38,0.4);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.cat-tile .cat-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.cat-tile h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text); }
.cat-tile span { font-size: 0.78rem; color: var(--text-muted); }

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.prod-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-card);
}
.prod-card:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.prod-img {
  aspect-ratio: 4/3;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.prod-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.prod-card:hover .prod-img img { transform: scale(1.06); }
.prod-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--red);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--font-d);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.prod-body { padding: 1rem; }
.prod-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
.prod-name { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.3rem; color: var(--text); }
.prod-sku { font-size: 0.73rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.prod-price { font-family: var(--font-d); font-size: 1.3rem; font-weight: 900; color: var(--text); }
.prod-price small { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-b); font-weight: 400; }
.prod-add {
  background: var(--red);
  border: none;
  color: white;
  width: 34px; height: 34px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.prod-add:hover { background: var(--red-dark); transform: scale(1.1); }

/* ── BRANDS STRIP ── */
.brands-strip {
  padding: 2.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.brands-scroll { overflow: hidden; position: relative; }
.brands-scroll::before, .brands-scroll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.brands-scroll::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.brands-scroll::after { right: 0; background: linear-gradient(to left, var(--surface), transparent); }
.brands-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scrollBrands 25s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes scrollBrands { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-item {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.why-card:hover { border-color: rgba(220,38,38,0.3); box-shadow: var(--shadow-hover); }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.why-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ── TRUSTED ── */
.trusted-section { background: var(--surface); }
.trusted-logos {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.trusted-item {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-card);
}
.trusted-quote {
  background: linear-gradient(135deg, rgba(220,38,38,0.04), #ffffff);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.trusted-quote p { font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.trusted-quote span { color: var(--text-muted); font-size: 0.95rem; }

/* ── ABOUT ── */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media(max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-hover);
}
.about-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.about-content strong { color: var(--text); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media(max-width: 500px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.mv-card h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.mv-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ── SERVICES ── */
.services-section { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-muted), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(220,38,38,0.3); box-shadow: var(--shadow-hover); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; position: relative; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; position: relative; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; position: relative; }
.services-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(220,38,38,0.05), #ffffff);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.services-cta p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── CONTACT ── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}
@media(max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-wrap h3, .contact-info h3 {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media(max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }
.form-group textarea { resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: #ffffff; color: var(--text); }

.contact-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: var(--transition);
  color: inherit;
  box-shadow: var(--shadow-card);
}
.contact-card:hover { border-color: rgba(220,38,38,0.3); box-shadow: var(--shadow-hover); }
.ccard-icon {
  width: 40px; height: 40px;
  background: var(--red-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card div { display: flex; flex-direction: column; }
.contact-card strong { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--text); }
.contact-card span { font-size: 0.85rem; color: var(--text-muted); }
.hours-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}
.hours-card h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 0.85rem; color: var(--text); }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text);
}
.hours-row:last-child { border-bottom: none; }
.closed { color: var(--text-muted); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: #9ca3af; font-size: 0.9rem; line-height: 1.6; margin: 0.75rem 0 1rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--red); color: var(--red); }
.footer-col h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: #ffffff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: #9ca3af; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-col ul li { color: #9ca3af; font-size: 0.88rem; line-height: 1.6; }
.footer-logo { color: #ffffff; }
.footer-logo span { color: var(--red); }
.footer-bottom {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: #9ca3af; }
.footer-bottom span { color: var(--red); font-weight: 600; }
.footer-payment { display: flex; align-items: center; gap: 0.75rem; }
.footer-payment span { font-size: 0.78rem; color: #9ca3af; }
.footer-payment img { height: 20px; filter: brightness(0) invert(1); opacity: 0.5; }

/* ── CART DRAWER ── */
.overlay{position:fixed;inset:0;background:rgba(0,0,0,0.4);z-index:998;opacity:0;pointer-events:none;transition:opacity 0.3s}
.overlay.open{opacity:1;pointer-events:all}
.cart-drawer{position:fixed;top:0;right:0;height:100vh;width:min(400px,100vw);background:white;z-index:999;transform:translateX(100%);transition:transform 0.35s cubic-bezier(0.4,0,0.2,1);display:flex;flex-direction:column;box-shadow:-4px 0 24px rgba(0,0,0,0.1);border-left:1px solid #e5e7eb}
.cart-drawer.open{transform:translateX(0)}
.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-header h2 { font-family: var(--font-d); font-size: 1.5rem; font-weight: 800; color: var(--text); }
.drawer-header h2 span { color: var(--red); }
.drawer-header button { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.5rem; transition: color 0.15s; }
.drawer-header button:hover { color: var(--text); }
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.drawer-item {
  display: flex;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.85rem;
  align-items: flex-start;
}
.di-img {
  width: 56px; height: 56px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  flex-shrink: 0;
}
.di-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.di-info { flex: 1; }
.di-name { font-weight: 600; font-size: 0.88rem; line-height: 1.3; margin-bottom: 0.2rem; color: var(--text); }
.di-brand { font-size: 0.72rem; color: var(--red); margin-bottom: 0.5rem; }
.di-qty { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  color: var(--text);
  width: 24px; height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
.qty-btn:hover { border-color: var(--red); }
.qty-n { font-size: 0.88rem; font-weight: 700; min-width: 20px; text-align: center; color: var(--text); }
.di-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.di-price { font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; color: var(--text); }
.di-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; transition: color 0.15s; }
.di-remove:hover { color: var(--red); }
.drawer-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.drawer-empty svg { opacity: 0.2; margin: 0 auto 1rem; display: block; }
.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: #ffffff;
}
.drawer-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.drawer-total span { color: var(--text-muted); }
.drawer-total strong { font-family: var(--font-d); font-size: 1.4rem; color: var(--red); }

/* ── MODAL (product detail) ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: min(820px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.25s;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal-backdrop.open .modal-box { transform: scale(1); }
.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media(max-width: 600px) { .modal-inner { grid-template-columns: 1fr; } }
.modal-img {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-right: 1px solid var(--glass-border);
  min-height: 300px;
}
@media(max-width: 600px) { .modal-img { border-right: none; border-bottom: 1px solid var(--glass-border); } }
.modal-img img { max-width: 100%; max-height: 220px; object-fit: contain; }
.modal-body { padding: 2rem; }
.modal-brand { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.modal-name { font-family: var(--font-d); font-size: 1.7rem; font-weight: 800; line-height: 1.15; margin-bottom: 0.4rem; color: var(--text); }
.modal-sku { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; }
.modal-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.modal-specs { margin-bottom: 1.25rem; }
.modal-specs h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.65rem; }
.spec-row { display: flex; justify-content: space-between; font-size: 0.84rem; padding: 0.35rem 0; border-bottom: 1px solid var(--glass-border); color: var(--text); }
.spec-row span:first-child { color: var(--text-muted); }
.modal-price { font-family: var(--font-d); font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; color: var(--text); }
.modal-price small { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; font-family: var(--font-b); }
.modal-actions { display: flex; flex-direction: column; gap: 0.65rem; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}
.modal-close:hover { background: var(--red-muted); color: var(--red); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #111111;
  border: 1px solid var(--red);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 300;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── PRODUCTS PAGE ── */
.shop-wrap {
  padding: 2rem 0 5rem;
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
@media(max-width: 960px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .shop-sidebar.open { display: block; }
}
.shop-sidebar { position: sticky; top: 90px; }
.filter-box {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
}
.filter-box h3 {
  font-family: var(--font-d);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--glass-border);
}
.filter-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.filter-input:focus { border-color: var(--red); background: #ffffff; }
.filter-input::placeholder { color: var(--text-dim); }
.filter-list { list-style: none; }
.filter-list li button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-b);
}
.filter-list li button:hover { color: var(--text); background: var(--surface); }
.filter-list li button.active { color: white; background: var(--red); font-weight: 600; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.brand-chip {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.brand-chip:hover { border-color: var(--red); color: var(--text); }
.brand-chip.active { background: var(--red-muted); border-color: var(--red); color: var(--red); }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.results-label { font-size: 0.88rem; color: var(--text-muted); }
.results-label strong { color: var(--text); }
.toolbar-right { display: flex; gap: 0.75rem; align-items: center; }
.sort-select {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-b);
}
.sort-select:focus { border-color: var(--red); }
.sort-select option { background: #ffffff; color: var(--text); }
.filter-toggle-btn {
  display: none;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  gap: 0.4rem;
  align-items: center;
}
@media(max-width: 960px) { .filter-toggle-btn { display: flex; } }

/* ── ADMIN LOGIN ── */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 1rem;
}
.login-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: min(420px, 100%);
  box-shadow: var(--shadow-hover);
}
.login-card .logo { display: block; margin-bottom: 1.5rem; font-size: 2rem; }
.login-card h2 { font-size: 1.5rem; margin-bottom: 0.4rem; color: var(--text); }
.login-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2rem; }
.login-error {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.3);
  color: var(--red-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: none;
}

/* ── ADMIN DASHBOARD ── */
.admin-wrap {
  min-height: 100vh;
  background: var(--surface);
}
.admin-sidebar {
  position: fixed;
  top: 0; left: 0;
  width: 240px;
  height: 100%;
  background: #ffffff;
  border-right: 1px solid var(--glass-border);
  z-index: 50;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.admin-logo {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.admin-logo .logo { font-size: 1.4rem; color: var(--text); }
.admin-logo small { font-size: 0.7rem; color: var(--text-muted); display: block; margin-top: 0.2rem; }
.admin-nav { flex: 1; padding: 1rem 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover { color: var(--text); background: var(--surface); }
.admin-nav a.active { color: var(--red); border-left-color: var(--red); background: var(--red-muted); }
.admin-nav a span { font-size: 1.1rem; }
.admin-nav-section {
  padding: 0.75rem 1.5rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.admin-main {
  margin-left: 240px;
  min-height: 100vh;
}
.admin-topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-topbar h1 { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.admin-content { padding: 2rem; }

/* Admin stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}
.stat-card .sc-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-card .sc-value { font-family: var(--font-d); font-size: 2rem; font-weight: 900; color: var(--text); }
.stat-card .sc-sub { font-size: 0.78rem; color: var(--red); margin-top: 0.25rem; }

/* Admin table */
.admin-table-wrap {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}
.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-table-header h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; color: var(--text); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border-bottom: 1px solid var(--glass-border);
}
.admin-table td {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--glass-border);
  vertical-align: middle;
  color: var(--text);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--surface); }
.prod-thumb {
  width: 44px; height: 44px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  padding: 4px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-active { background: rgba(34,197,94,0.1); color: #16a34a; }
.status-inactive { background: rgba(107,114,128,0.1); color: #6b7280; }
.status-low { background: rgba(251,191,36,0.1); color: #d97706; }
.action-btns { display: flex; gap: 0.5rem; }
.action-btn {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-b);
}
.action-btn:hover { border-color: var(--red); color: var(--red); }
.action-btn.danger:hover { border-color: #ef4444; color: #ef4444; }

/* Admin form modal */
.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.admin-modal.open { display: flex; }
.admin-modal-box {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: min(700px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.admin-modal-box h2 { font-family: var(--font-d); font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-full { grid-column: 1/-1; }

@media(max-width: 768px) {
  .admin-sidebar { display: none; }
  .admin-sidebar.open { display: flex; }
  .admin-main { margin-left: 0; }
}

/* ── PAGE HERO (productos) ── */
.page-banner {
  padding: 100px 0 50px;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(220,38,38,0.06) 0%, transparent 70%);
}
.page-banner h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; position: relative; color: var(--text); }
.page-banner p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0.5rem auto 0; position: relative; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ── SHIPPING PROGRESS BAR ── */
.shipping-progress {
  padding: 0.85rem 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--glass-border);
}
.ship-free {
  font-size: 0.88rem;
  font-weight: 600;
  color: #16a34a;
  text-align: center;
}
.ship-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.ship-info strong { color: var(--text); }
.ship-remaining { color: var(--red); font-weight: 600; }
.ship-bar {
  height: 4px;
  background: var(--glass-border);
  border-radius: 2px;
  overflow: hidden;
}
.ship-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ── DRAWER SUMMARY ── */
.drawer-summary {
  margin-bottom: 1rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:last-child { color: var(--text); }
.free-ship { color: #16a34a!important; font-weight: 700; }
.total-row {
  font-size: 1rem;
  padding-top: 0.65rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--glass-border)!important;
  border-bottom: none!important;
}
.total-row span { color: var(--text)!important; font-weight: 600; }
.total-row strong {
  font-family: var(--font-d);
  font-size: 1.4rem;
  color: var(--red)!important;
}

/* ── STRIPE BUTTON ── */
.checkout-stripe-btn {
  background: #635bff;
  letter-spacing: 0.02em;
}
.checkout-stripe-btn:hover { background: #4f46e5; }
.drawer-ctas { display: flex; flex-direction: column; }
.btn-mp{background:#111111;color:white;font-weight:600;font-size:0.92rem;letter-spacing:0.02em;border:none;border-radius:8px;padding:0.85rem 1.5rem;cursor:pointer;transition:all 0.2s;font-family:"Barlow",sans-serif}
.btn-mp:hover{background:#333333}
.img-upload-area{background:var(--glass);border:2px dashed var(--glass-border);border-radius:var(--radius);padding:1.25rem;text-align:center;transition:border-color 0.2s}
.img-upload-area:hover{border-color:var(--red)}

/* ── PRODUCTS PAGE REDESIGN ── */
.page-banner{padding:1.5rem 0;background:white;border-bottom:1px solid #e5e7eb}
.page-banner h1{font-family:"Barlow Condensed",sans-serif}
.filter-box h3{font-size:0.7rem;font-weight:800;letter-spacing:0.12em;text-transform:uppercase;color:#6b7280;margin-bottom:0.75rem;padding-bottom:0.5rem;border-bottom:1px solid #f0f0f0}
.filter-list li button{color:#374151;font-size:0.85rem;padding:0.4rem 0.6rem;border-radius:6px}
.filter-list li button.active{background:var(--red);color:white}
.filter-list li button:hover{background:#f3f4f6;color:#111}
.brand-chip{font-size:0.75rem;padding:0.2rem 0.6rem;border-radius:4px;background:#f3f4f6;border:1px solid #e5e7eb;color:#374151}
.brand-chip.active{background:var(--red);border-color:var(--red);color:white}
.brand-chip:hover{border-color:var(--red);color:var(--red);background:white}
.prod-card{background:white;border:1px solid #e8e8e8;border-radius:8px;overflow:hidden;transition:all 0.2s;cursor:pointer;position:relative;display:flex;flex-direction:column;box-shadow:0 1px 3px rgba(0,0,0,0.06)}
.prod-card:hover{box-shadow:0 4px 16px rgba(0,0,0,0.12);transform:translateY(-2px);border-color:#ccc}
.prod-img{aspect-ratio:1/1;background:white;display:flex;align-items:center;justify-content:center;padding:1.25rem;overflow:hidden}
.prod-img img{max-width:100%;max-height:160px;object-fit:contain;transition:transform 0.3s}
.prod-card:hover .prod-img img{transform:scale(1.04)}
.prod-body{padding:0.75rem;flex:1;display:flex;flex-direction:column;border-top:1px solid #f0f0f0}
.prod-brand{font-size:0.68rem;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:#dc2626;margin-bottom:0.3rem}
.prod-name{font-size:0.88rem;font-weight:500;color:#1a1a1a;line-height:1.4;margin-bottom:0.4rem;flex:1;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.prod-sku{font-size:0.68rem;color:#9ca3af;letter-spacing:0.02em;margin-bottom:0.5rem;font-family:monospace}
.prod-price{font-size:1.25rem;font-weight:900;color:#111;letter-spacing:-0.02em;font-family:"Barlow Condensed",sans-serif;margin-bottom:0.5rem}
.prod-price small{font-size:0.65rem;color:#888;font-weight:400;font-family:"Barlow",sans-serif}
.prod-footer{display:flex;flex-direction:column;gap:0.4rem;margin-top:auto}
.prod-add{background:#dc2626;border:none;color:white;width:100%;height:38px;border-radius:6px;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:0.5rem;font-size:0.85rem;font-weight:600;transition:all 0.2s;font-family:"Barlow",sans-serif;letter-spacing:0.01em}
.prod-add:hover{background:#b91c1c}
.prod-badge{position:absolute;top:0.5rem;left:0.5rem;background:#dc2626;color:white;font-size:0.6rem;font-weight:800;letter-spacing:0.06em;text-transform:uppercase;padding:0.15rem 0.45rem;border-radius:3px;z-index:2}
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0.85rem}
@media(max-width:1200px){.products-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:800px){.products-grid{grid-template-columns:repeat(2,1fr)}}
.drawer-header h2{font-family:"Barlow Condensed",sans-serif;font-size:1.4rem;font-weight:800;letter-spacing:-0.01em}
.di-name{font-size:0.85rem;font-weight:600;color:#111}
.di-brand{font-size:0.7rem;color:#dc2626;text-transform:uppercase;letter-spacing:0.06em}
.di-price{font-size:1rem;font-weight:800;color:#111;font-family:"Barlow Condensed",sans-serif}
.di-remove{color:#ccc;font-size:0.85rem;font-weight:600;border:1px solid #eee;border-radius:4px;width:22px;height:22px;display:flex;align-items:center;justify-content:center}
.di-remove:hover{color:#dc2626;border-color:#dc2626}
.ship-free{font-size:0.78rem;font-weight:600;color:#16a34a}
.summary-row{font-size:0.85rem}
.total-row strong{font-size:1.3rem}

.drawer-header{border-bottom:1px solid #f0f0f0;padding:1.25rem 1.5rem}
.drawer-footer{border-top:1px solid #f0f0f0;padding:1.25rem}
body{font-family:"Barlow",sans-serif;-webkit-font-smoothing:antialiased;color:#111}
h1,h2,h3,h4{font-family:"Barlow Condensed",sans-serif;font-weight:800;letter-spacing:-0.02em}
.modal-box{border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,0.15)}
.modal-name{font-size:1.6rem;font-weight:900;line-height:1.1;color:#111}
.modal-brand{font-size:0.72rem;font-weight:700;letter-spacing:0.1em;color:#dc2626}
.modal-price{font-size:2rem;font-weight:900;color:#111;letter-spacing:-0.02em}
.modal-desc{font-size:0.88rem;color:#4b5563;line-height:1.65}
.spec-row{font-size:0.82rem;color:#6b7280}
.spec-row span:last-child{color:#111;font-weight:500}
.modal-actions .btn{font-size:0.92rem;font-weight:600;letter-spacing:0.02em;padding:0.85rem 1.5rem;border-radius:8px}
.modal-actions .btn-red{background:#dc2626}
.modal-actions .btn-red:hover{background:#b91c1c}

/* ── FONT SIZE OVERRIDES ── */
body{font-size:19px;line-height:1.65}
.prod-name{font-size:0.92rem}
.prod-price{font-size:1.3rem}
p{font-size:0.95rem;line-height:1.7}
.section-desc{font-size:1.05rem}
.why-card p{font-size:0.95rem}
.about-content p{font-size:0.97rem}
.tmsg{font-size:0.82rem}
.nav-links a{font-size:0.95rem}
.footer-col ul li{font-size:0.9rem}
.contact-card span{font-size:0.88rem}
.spec-row{font-size:0.85rem}
.modal-desc{font-size:0.92rem}










.logo-img{display:flex;align-items:center;text-decoration:none;flex-shrink:0}
.logo-img img{height:70px;width:auto;display:block;object-fit:contain}

/* ── Trusted Clients Carousel ─────────────────────────────── */
.trusted-carousel-wrap{overflow:hidden;position:relative;margin-bottom:2.5rem}
.trusted-carousel-wrap::before,.trusted-carousel-wrap::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2}
.trusted-carousel-wrap::before{left:0;background:linear-gradient(to right,var(--surface),transparent)}
.trusted-carousel-wrap::after{right:0;background:linear-gradient(to left,var(--surface),transparent)}
.trusted-track{display:flex;gap:1.25rem;animation:scrollTrusted 30s linear infinite;width:max-content}
.trusted-track:hover{animation-play-state:paused}
@keyframes scrollTrusted{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* FONT SIZE OVERRIDES */
body{font-size:17px!important;line-height:1.7!important}
p{font-size:1rem!important;line-height:1.75!important}
.hero-desc{font-size:1.15rem!important;line-height:1.75!important}
.prod-name{font-size:0.95rem!important;font-weight:500!important}
.prod-price{font-size:1.35rem!important}
.prod-sku{font-size:0.78rem!important}
.prod-brand{font-size:0.75rem!important}
.nav-links a{font-size:1rem!important}
.footer-col ul li{font-size:0.95rem!important}
.footer-col ul li a{font-size:0.95rem!important}
.why-card p{font-size:0.98rem!important;line-height:1.7!important}
.about-content p{font-size:1rem!important;line-height:1.75!important}
.contact-card span{font-size:0.92rem!important}
.modal-desc{font-size:0.95rem!important;line-height:1.7!important}
.spec-row{font-size:0.88rem!important}
.trusted-item{font-size:1.05rem!important}
.brand-item{font-size:1.05rem!important}
.filter-list li button{font-size:0.92rem!important}
.brand-chip{font-size:0.82rem!important}
.drawer-item .di-name{font-size:0.92rem!important}
.summary-row{font-size:0.92rem!important}
.hours-row{font-size:0.92rem!important}
.section-desc{font-size:1.05rem!important}
.mv-card p{font-size:0.92rem!important}
.service-card p{font-size:0.95rem!important}
.hero-badge{font-size:0.85rem!important}
.stat span{font-size:0.85rem!important}
.results-label{font-size:0.92rem!important}
.topbar-msg,.tmsg{font-size:0.82rem!important}
input,select,textarea{font-size:0.95rem!important}
label{font-size:0.88rem!important}
.btn{font-size:0.98rem!important}
small{font-size:0.78rem!important}
.trusted-item{background:white;border:1px solid #e5e7eb;border-radius:8px;padding:0.75rem 1.5rem;font-family:'Barlow Condensed',sans-serif;font-size:1rem;font-weight:700;color:#374151;white-space:nowrap;flex-shrink:0;letter-spacing:0.02em}

/* BODY TEXT SIZE INCREASE */
.about-content p{font-size:1.05rem!important;line-height:1.8!important}
.mv-card p{font-size:0.95rem!important;line-height:1.7!important}
.mv-card h4{font-size:1.05rem!important}
.why-card p{font-size:1rem!important;line-height:1.75!important}
.why-card h3{font-size:1.2rem!important}
.service-card p{font-size:1rem!important;line-height:1.75!important}
.service-card h3{font-size:1.2rem!important}
.section-desc{font-size:1.1rem!important;line-height:1.75!important}
.hero-desc{font-size:1.2rem!important;line-height:1.8!important}
.trusted-quote p{font-size:1.5rem!important}
.trusted-quote span{font-size:1rem!important}
.contact-card span{font-size:0.95rem!important}
.contact-card strong{font-size:0.95rem!important}
.hours-row{font-size:0.95rem!important}
.footer-desc{font-size:0.95rem!important;line-height:1.7!important}
.footer-col ul li{font-size:0.95rem!important}
.topbar-right a{font-size:0.85rem!important}
p{font-size:1.02rem!important;line-height:1.75!important}
.cat-tile h3{font-size:1.05rem!important;font-weight:800!important}
.cat-tile span{font-size:0.88rem!important}
.cat-tile .cat-icon{font-size:2.8rem!important;margin-bottom:1rem!important}
.cat-tile{padding:2rem 1.5rem!important}

/* PRICE TYPOGRAPHY CONSISTENCY */
.prod-price{font-family:'Barlow Condensed',sans-serif!important;font-size:1.3rem!important;font-weight:800!important;letter-spacing:-0.01em!important;color:#111!important}
.prod-price small{font-family:'Barlow',sans-serif!important;font-size:0.7rem!important;font-weight:400!important;color:#9ca3af!important}
.modal-price{font-family:'Barlow Condensed',sans-serif!important;font-size:2rem!important;font-weight:900!important;letter-spacing:-0.02em!important;color:#111!important}
.modal-price small{font-family:'Barlow',sans-serif!important;font-size:0.85rem!important;font-weight:400!important;color:#9ca3af!important}
.drawer-total strong{font-family:'Barlow Condensed',sans-serif!important;font-size:1.4rem!important;font-weight:900!important}
.summary-row{font-family:'Barlow',sans-serif!important;font-size:0.9rem!important}
.total-row span,.total-row strong{font-family:'Barlow Condensed',sans-serif!important;font-size:1.1rem!important;font-weight:800!important}

.modal-img{display:flex!important;align-items:center!important;justify-content:center!important;background:#f8f9fa!important}
.modal-img img{max-width:100%!important;max-height:280px!important;object-fit:contain!important;margin:auto!important}

.modal-inner{display:grid;grid-template-columns:1fr 1fr;align-items:start!important}
.modal-img{position:sticky!important;top:0!important;align-self:start!important;min-height:480px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:#f8f9fa!important;padding:2rem!important}
.modal-img img{max-width:100%!important;max-height:440px!important;object-fit:contain!important;width:100%!important}
.modal-body{padding:2rem!important;overflow-y:auto!important}
.modal-box{max-height:90vh!important;overflow-y:auto!important}
