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

:root {
  --red: #c91b1b;
  --red-h: #a81515;
  --black: #0f0f0f;
  --text: #1c1c1c;
  --sub: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg2: #f8f9fa;
  --wa: #25d366;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* NAV */
#nav {
  position: sticky; top: 0; z-index: 200;
  background: #fff; border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 40px; height: 68px; gap: 24px;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.nav-brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.nav-tagline {
  font-size: 13px; font-weight: 600; color: var(--red);
  border-left: 2px solid var(--border); padding-left: 14px;
  white-space: nowrap;
}
.nav-links { display: flex; list-style: none; margin-left: auto; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--sub);
  padding: 0 18px; height: 68px; display: flex; align-items: center;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); border-color: var(--red); }
.btn-wa-nav {
  background: var(--wa); color: #fff;
  font-size: 13px; font-weight: 600; padding: 9px 20px;
  border-radius: 6px; white-space: nowrap; transition: opacity .2s;
  flex-shrink: 0;
}
.btn-wa-nav:hover { opacity: .88; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; margin-left: 8px; }
.burger span { width: 20px; height: 2px; background: var(--text); display: block; transition: .3s; }

.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; z-index: 199;
  background: #fff; border-bottom: 1px solid var(--border);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 24px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--red); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 7px;
  transition: background .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-h); }
.btn-outline {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--red); color: var(--red);
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 6px;
  transition: all .2s; background: transparent; cursor: pointer;
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* EYEBROW */
.eyebrow-red {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
  display: block;
}

/* HERO */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.hero-text {
  padding: 88px 60px 88px 40px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0;
  position: relative;
}
.hero-text::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 3px; height: 100%; background: var(--red); opacity: .15;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201,22,22,.18);
}
.hero h1 {
  font-size: clamp(32px, 3.8vw, 54px); font-weight: 900;
  color: var(--black); line-height: 1.1; margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-desc { font-size: 15px; color: var(--sub); margin-bottom: 36px; max-width: 420px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn-primary { width: auto; }
.btn-ghost-dark {
  padding: 13px 22px; border-radius: 6px; font-size: 14px; font-weight: 600;
  color: var(--text); text-decoration: none; border: 1.5px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-ghost-dark:hover { border-color: var(--black); color: var(--black); }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.hstat { display: flex; flex-direction: column; }
.hstat strong { font-size: 22px; font-weight: 800; color: var(--black); line-height: 1; }
.hstat span { font-size: 11px; color: var(--sub); margin-top: 3px; }
.hstat-sep { width: 1px; height: 32px; background: var(--border); }
.hero-visual { overflow: hidden; background: var(--bg2); position: relative; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.08), transparent);
  pointer-events: none;
}

/* BENEFICES */
.benefices { background: var(--black); }
.benef-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benef-item {
  padding: 44px 32px; border-right: 1px solid #1e1e1e;
  transition: background .2s;
}
.benef-item:last-child { border-right: none; }
.benef-item:hover { background: #1a1a1a; }
.benef-icon-wrap {
  width: 40px; height: 40px; margin-bottom: 20px;
  color: var(--red);
}
.benef-icon-wrap svg { width: 100%; height: 100%; }
.benef-item h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.benef-item p { font-size: 13px; color: #888; line-height: 1.7; }

/* EQUIP */
.equip-section { padding: 96px 40px; }
.equip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.equip-photo { position: relative; border-radius: 10px; overflow: hidden; }
.equip-photo img { width: 100%; height: 400px; object-fit: cover; }
.equip-chip {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--red); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 10px 16px; border-radius: 6px;
}
.equip-text h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--black); margin-bottom: 16px; line-height: 1.2; }
.equip-text > p { font-size: 14px; color: var(--sub); margin-bottom: 24px; }
.check-list { margin-bottom: 32px; }
.check-list li {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.check-list li::before { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.check-list li:last-child { border-bottom: none; }

/* FIABLE */
.fiable { background: #fef2f2; padding: 80px 40px; border-top: 3px solid var(--red); }
.fiable-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.fiable-inner h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--black); margin-bottom: 16px; }
.fiable-desc { font-size: 15px; color: var(--sub); margin-bottom: 52px; line-height: 1.8; }
.fiable-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: 10px; border: 1px solid var(--border); overflow: hidden;
}
.fstat { padding: 28px 16px; text-align: center; border-right: 1px solid var(--border); }
.fstat:last-child { border-right: none; }
.fstat-num { display: block; font-size: 30px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 6px; }
.fstat-label { font-size: 12px; color: var(--sub); font-weight: 500; }
.fnum { display: block; font-size: 30px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 6px; }
.flabel { display: block; font-size: 12px; color: var(--sub); font-weight: 500; }

/* AVIS */
.avis { padding: 96px 40px; }
.avis-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.avis-top h2 { font-size: 36px; font-weight: 800; color: var(--black); }
.avis-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.gscore { background: var(--bg2); border: 1px solid var(--border); padding: 10px 18px; border-radius: 8px; text-align: center; }
.gstars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.gnum { font-size: 18px; font-weight: 800; color: var(--black); }
.gnum span { font-size: 13px; color: var(--sub); font-weight: 400; }
.gsrc { font-size: 10px; color: var(--sub); font-weight: 600; letter-spacing: 1px; }
.avis-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.avis-card {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 24px; border-radius: 10px;
  border-top: 3px solid var(--red);
}
.stars { color: #f59e0b; font-size: 13px; margin-bottom: 12px; }
.avis-card p { font-size: 13px; color: var(--sub); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.avis-author { display: flex; align-items: center; gap: 10px; }
.av { width: 34px; height: 34px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.avis-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.avis-author small { font-size: 11px; color: var(--sub); }

/* FAQ */
.faq-sec { padding: 96px 40px; background: #fff; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-inner h2 { font-size: 42px; font-weight: 900; color: var(--black); margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-highlight .faq-q { color: var(--text); }
.faq-q.open { color: var(--red); }
.faq-q:hover { color: var(--red); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 15px; font-weight: 600;
  color: var(--text); text-align: left; gap: 16px;
}
.faq-q span { color: var(--red); font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding-bottom: 0;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p { font-size: 14px; color: var(--sub); line-height: 1.8; }

/* CATALOGUE */
.catalogue { padding: 96px 40px; background: var(--bg2); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 40px 0 16px; }
.pag-btn { width: 38px; height: 38px; border-radius: 6px; border: 1.5px solid var(--border); background: #fff; font-size: 14px; font-weight: 600; color: var(--sub); cursor: pointer; transition: all .2s; }
.pag-btn:hover { border-color: var(--red); color: var(--red); }
.pag-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.cat-head { margin-bottom: 28px; }
.cat-head h2 { font-size: 36px; font-weight: 800; color: var(--black); }
.cat-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-btn {
  font-size: 12px; font-weight: 600; padding: 8px 16px;
  border-radius: 20px; border: 1.5px solid var(--border);
  background: #fff; color: var(--sub); cursor: pointer; transition: all .2s;
}
.cat-btn.active, .cat-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.prod-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.prod-card.hidden { display: none; }
.prod-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.prod-img-wrap { position: relative; overflow: hidden; background: #f5f5f5; aspect-ratio: 3/4; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .3s; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }
.prod-hover {
  position: absolute; inset: 0; background: rgba(201,27,27,.82);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 600;
  opacity: 0; transition: opacity .25s;
}
.prod-card:hover .prod-hover { opacity: 1; }
.prod-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.prod-ref { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--sub); text-transform: uppercase; margin-bottom: 5px; }
.prod-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 7px; }
.prod-desc { font-size: 12px; color: var(--sub); flex: 1; margin-bottom: 16px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.prod-price { font-size: 20px; font-weight: 800; color: var(--black); }
.prod-price small { font-size: 11px; color: var(--sub); font-weight: 400; }
.prod-cta { background: var(--wa); color: #fff; font-size: 11px; font-weight: 600; padding: 7px 12px; border-radius: 6px; }

/* CONTACT */
.contact-sec { padding: 96px 40px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-left h2 { font-size: 36px; font-weight: 800; color: var(--black); margin-bottom: 14px; }
.contact-left > p { font-size: 14px; color: var(--sub); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.c-item { display: flex; align-items: flex-start; gap: 12px; }
.c-icon { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.c-icon svg { width: 100%; height: 100%; }
.c-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); }
.c-item small { font-size: 12px; color: var(--sub); }
.contact-right { background: var(--bg2); padding: 36px; border-radius: 10px; border: 1px solid var(--border); }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--sub); margin-bottom: 7px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: #fff; border: 1px solid var(--border);
  color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 14px; padding: 11px 13px; border-radius: 6px;
  outline: none; transition: border-color .2s; -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--red); }
.fg textarea { resize: none; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; height: 46px; background: var(--red); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  border: none; border-radius: 7px; cursor: pointer; transition: background .2s; margin-top: 4px;
}
.btn-submit:hover { background: var(--red-h); }
.form-success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; padding: 11px 14px; border-radius: 6px; font-size: 13px; font-weight: 500; display: none; margin-bottom: 14px; }
.form-success.visible { display: block; }

/* FOOTER */
footer { background: var(--black); padding: 56px 40px 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 40px; border-bottom: 1px solid #1e1e1e; margin-bottom: 20px; }
.footer-brand img { display: none; }
.footer-logo-text { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 10px; line-height: 1; }
.footer-logo-text span { color: var(--red); }
.footer-brand p { font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 6px; }
.footer-brand small { font-size: 11px; color: #444; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #555; margin-bottom: 14px; }
.footer-col li { font-size: 13px; color: #555; padding: 4px 0; }
.footer-bottom p { font-size: 12px; color: #333; text-align: center; }

/* WA FLOAT */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 500; width: 52px; height: 52px; background: var(--wa); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.35); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 24px; height: 24px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 280px; }
  .benef-grid { grid-template-columns: 1fr 1fr; }
  .equip-inner { grid-template-columns: 1fr; gap: 40px; }
  .fiable-grid { grid-template-columns: 1fr 1fr; }
  .avis-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-links { display: none; }
  .btn-wa-nav { display: none; }
  .burger { display: flex; }
  .nav-tagline { display: none; }
  .hero-text { padding: 48px 20px; }
  .benefices, .equip-section, .fiable, .avis, .catalogue, .contact-sec, footer { padding-left: 20px; padding-right: 20px; }
  .benef-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .fiable-grid { grid-template-columns: 1fr 1fr; }
  .avis-top { flex-direction: column; align-items: flex-start; }
}

/* CTA SECTION */
.cta-section { background: var(--black); padding: 80px 40px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.cta-text h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-text p { font-size: 14px; color: #777; max-width: 480px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; background: #fff; color: var(--black); font-size: 14px; font-weight: 700; padding: 13px 24px; border-radius: 7px; transition: opacity .2s; }
.btn-white:hover { opacity: .88; }
.btn-outline-white { display: inline-flex; align-items: center; border: 1.5px solid #444; color: #aaa; font-size: 14px; font-weight: 600; padding: 13px 24px; border-radius: 7px; transition: all .2s; }
.btn-outline-white:hover { border-color: #fff; color: #fff; }

/* PROD CARDS UPDATE */
.prod-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.prod-tag { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: #fef2f2; color: var(--red); padding: 4px 8px; border-radius: 4px; }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  position: fixed; top: 50%; left: 50%; z-index: 901;
  transform: translate(-50%, -48%);
  width: min(900px, 95vw); max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%); }
.modal-close {
  position: sticky; top: 16px; float: right; margin: 16px 16px 0 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: #f3f4f6; border: none; cursor: pointer;
  font-size: 16px; color: var(--sub); display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 10;
}
.modal-close:hover { background: #e5e7eb; }
.modal-inner { display: grid; grid-template-columns: 1fr 1fr; clear: both; }
.modal-img { background: #f8f9fa; display: flex; align-items: center; justify-content: center; padding: 32px; min-height: 360px; border-radius: 12px 0 0 12px; }
.modal-img img { max-height: 340px; object-fit: contain; width: 100%; }
.modal-info { padding: 40px 36px; display: flex; flex-direction: column; }
.modal-ref { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sub); margin-bottom: 8px; }
.modal-name { font-size: 22px; font-weight: 800; color: var(--black); margin-bottom: 10px; line-height: 1.2; }
.modal-price { font-size: 28px; font-weight: 800; color: var(--red); margin-bottom: 20px; }
.modal-desc { font-size: 14px; color: var(--sub); line-height: 1.8; margin-bottom: 20px; }
.modal-specs {
  background: #f8f9fa; border-left: 3px solid var(--red);
  padding: 14px 16px; border-radius: 0 6px 6px 0;
  font-size: 12px; color: var(--sub); line-height: 1.8;
  margin-bottom: 28px;
}
.modal-specs strong { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.modal-actions { margin-top: auto; }
.modal-wa { width: 100%; justify-content: center; margin-bottom: 12px; }
.modal-guarantee { text-align: center; font-size: 11px; color: var(--sub); }

@media (max-width: 680px) {
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img { min-height: 220px; border-radius: 12px 12px 0 0; }
  .modal-info { padding: 24px; }
  .cta-section { padding: 60px 20px; }
}

/* SPA PAGES */
.page { display: none; }
.page.active { display: block; }

.page-header { padding: 56px 40px 32px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: clamp(32px,4vw,52px); font-weight: 800; color: var(--black); margin-bottom: 10px; }
.page-sub { font-size: 14px; color: var(--sub); margin-top: 8px; }

/* CATALOGUE PAGE */
.cat-filters { padding: 24px 40px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.prod-grid { padding: 24px 40px 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }

/* PROD CARDS */
.prod-card { background:#fff; border:1px solid var(--border); border-radius:10px; overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .2s,transform .2s; cursor:pointer; }
.prod-card.hidden { display:none; }
.prod-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.09); transform:translateY(-2px); }
.pimg { position:relative; overflow:hidden; background:#f5f5f5; aspect-ratio:3/4; }
.pimg img { width:100%; height:100%; object-fit:contain; padding:8px; transition:transform .3s; }
.prod-card:hover .pimg img { transform:scale(1.04); }
.phover { position:absolute; inset:0; background:rgba(201,27,27,.82); display:flex; align-items:center; justify-content:center; color:#fff; font-size:14px; font-weight:600; opacity:0; transition:opacity .25s; }
.prod-card:hover .phover { opacity:1; }
.pbody { padding:16px; display:flex; flex-direction:column; flex:1; }
.pref { font-size:10px; font-weight:700; letter-spacing:2px; color:var(--sub); text-transform:uppercase; margin-bottom:4px; }
.pname { font-size:15px; font-weight:700; color:var(--black); margin-bottom:12px; }
.pfoot { display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px solid var(--border); margin-top:auto; }
.pprice { font-size:18px; font-weight:800; color:var(--black); }
.pprice small { font-size:11px; color:var(--sub); font-weight:400; }
.ptag { font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; background:#fef2f2; color:var(--red); padding:4px 8px; border-radius:4px; }

/* CONTACT PAGE */
.contact-inner { display:grid; grid-template-columns:1fr 1.3fr; gap:72px; align-items:start; padding:48px 40px 80px; }
.contact-items { display:flex; flex-direction:column; gap:20px; }
.c-item { display:flex; align-items:flex-start; gap:14px; }
.cico { width:20px; height:20px; color:var(--red); flex-shrink:0; margin-top:2px; }
.c-item strong { display:block; font-size:14px; font-weight:600; color:var(--black); }
.c-item small { font-size:12px; color:var(--sub); }
.contact-right { background:var(--bg2); padding:36px; border-radius:10px; border:1px solid var(--border); }

/* EYEBROW */
.eyebrow { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; margin-bottom:10px; display:block; }
.eyebrow.red, .eyebrow-red { color:var(--red); }

/* BICO */
.bico { width:36px; height:36px; color:var(--red); margin-bottom:16px; }

/* CICO */
.cico { width:20px; height:20px; }

/* MODAL */
.modal-overlay { position:fixed; inset:0; z-index:900; background:rgba(0,0,0,.6); backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity .25s; }
.modal-overlay.open { opacity:1; pointer-events:all; }
.modal { position:fixed; top:50%; left:50%; z-index:901; transform:translate(-50%,-48%); width:min(880px,95vw); max-height:90vh; overflow-y:auto; background:#fff; border-radius:12px; box-shadow:0 24px 80px rgba(0,0,0,.25); opacity:0; pointer-events:none; transition:opacity .25s,transform .25s; }
.modal.open { opacity:1; pointer-events:all; transform:translate(-50%,-50%); }
.modal-close { position:sticky; top:16px; float:right; margin:16px 16px 0 0; width:34px; height:34px; border-radius:50%; background:#f3f4f6; border:none; cursor:pointer; font-size:15px; color:var(--sub); display:flex; align-items:center; justify-content:center; z-index:10; }
.modal-close:hover { background:#e5e7eb; }
.modal-inner { display:grid; grid-template-columns:1fr 1fr; clear:both; }
.modal-img { background:#f8f9fa; display:flex; align-items:center; justify-content:center; padding:32px; min-height:340px; border-radius:12px 0 0 12px; }
.modal-img img { max-height:320px; object-fit:contain; width:100%; }
.modal-info { padding:40px 36px; display:flex; flex-direction:column; }
.modal-ref { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--sub); margin-bottom:8px; }
.modal-name { font-size:22px; font-weight:800; color:var(--black); margin-bottom:10px; line-height:1.2; }
.modal-price { font-size:28px; font-weight:800; color:var(--red); margin-bottom:18px; }
.modal-desc { font-size:14px; color:var(--sub); line-height:1.8; margin-bottom:18px; }
.modal-specs { background:#f8f9fa; border-left:3px solid var(--red); padding:12px 16px; border-radius:0 6px 6px 0; font-size:12px; color:var(--sub); line-height:1.8; margin-bottom:24px; }
.modal-specs strong { display:block; font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--red); margin-bottom:6px; }
.modal-actions { margin-top:auto; }
.modal-wa { width:100%; justify-content:center; margin-bottom:10px; }
.modal-guarantee { text-align:center; font-size:11px; color:var(--sub); }

/* CTA BAND */
.cta-band { background:var(--black); padding:72px 40px; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; max-width:1100px; margin:0 auto; }
.cta-band h2 { font-size:clamp(22px,3vw,36px); font-weight:800; color:#fff; margin-bottom:8px; }
.cta-band p { font-size:14px; color:#777; }
.cta-btns { display:flex; gap:12px; flex-wrap:wrap; }
.btn-white { display:inline-flex; align-items:center; background:#fff; color:var(--black); font-size:14px; font-weight:700; padding:12px 24px; border-radius:7px; }
.btn-white:hover { opacity:.88; }
.btn-outline-w { display:inline-flex; align-items:center; border:1.5px solid #444; color:#aaa; font-size:14px; font-weight:600; padding:12px 24px; border-radius:7px; background:transparent; cursor:pointer; transition:all .2s; }
.btn-outline-w:hover { border-color:#fff; color:#fff; }

@media(max-width:768px){
  .cat-filters,.prod-grid { padding-left:20px; padding-right:20px; }
  .prod-grid { grid-template-columns:1fr; }
  .contact-inner { grid-template-columns:1fr; padding:32px 20px 60px; }
  .modal-inner { grid-template-columns:1fr; }
  .modal-img { min-height:200px; border-radius:12px 12px 0 0; }
  .modal-info { padding:24px; }
  .page-header { padding:40px 20px 24px; }
}

/* CAROUSEL MODAL */
.modal-img-col { display: flex; flex-direction: column; gap: 12px; }
.modal-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-thumb {
  width: 64px; height: 64px; object-fit: cover; border-radius: 6px;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color .2s, opacity .2s; opacity: .6;
}
.modal-thumb:hover { opacity: .9; }
.modal-thumb.active { border-color: var(--red); opacity: 1; }
