/* ═══════════════════════════════════ ROOT & RESET ═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #e8001d;
  --red-d:  #c0001a;
  --black:  #1a1a1a;
  --dark:   #111111;
  --grey:   #f5f5f5;
  --text:   #333333;
  --muted:  #777777;
  --white:  #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,.10);
  --shadow-hover: 0 8px 30px rgba(0,0,0,.18);
  --radius: 12px;
  --font:   'Poppins', sans-serif;
  --transition: .28s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ═══ SECTION COMMONS ═══ */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; font-weight: 700; color: var(--black); }
.section-header h2 span { color: var(--red); }
.section-header p { color: var(--muted); margin-top: 10px; font-size: .95rem; }
.section-tag { background: var(--red); color: #fff; font-size: .75rem; font-weight: 600;
  padding: 4px 14px; border-radius: 50px; display: inline-block; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.center-btn { text-align: center; margin-top: 50px; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px;
  font-weight: 600; font-size: .9rem; transition: var(--transition); cursor: pointer; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,0,29,.35); }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--black); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ═══════════════════════════════════ TOP BAR ═══════════════════════════════════ */
.top-bar { background: var(--dark); color: #ccc; font-size: .8rem; padding: 8px 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-bar-left span { margin-right: 20px; }
.top-bar-left i { margin-right: 6px; color: var(--red); }
.top-bar-right a { color: #ccc; margin-left: 14px; font-size: 1rem; transition: color .2s; }
.top-bar-right a:hover { color: var(--red); }

/* ═══════════════════════════════════ HEADER ═══════════════════════════════════ */
.header { background: #fff; position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.08); transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.14); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 14px 20px; flex-wrap: wrap; }

/* Logo */
.logo a { display: flex; align-items: center; gap: 2px; font-size: 1.55rem; font-weight: 800; }
.logo-gbs { color: var(--red); }
.logo-num { color: var(--black); }

/* Search */
.search-bar { flex: 1; min-width: 260px; display: flex; border: 2px solid #eee; border-radius: 50px; overflow: hidden; transition: border .25s; }
.search-bar:focus-within { border-color: var(--red); }
.search-cat { padding: 10px 14px; border: none; border-right: 1px solid #eee; background: #f9f9f9;
  font-family: var(--font); font-size: .8rem; color: var(--text); cursor: pointer; }
.search-bar input { flex: 1; padding: 10px 14px; border: none; font-family: var(--font); font-size: .9rem; }
.search-bar input:focus { outline: none; }
.search-bar button { background: var(--red); color: #fff; padding: 0 18px; font-size: 1rem; transition: background .2s; }
.search-bar button:hover { background: var(--red-d); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 14px; }
.action-btn { display: flex; flex-direction: column; align-items: center; font-size: .75rem;
  color: var(--text); gap: 2px; transition: color .2s; position: relative; }
.action-btn i { font-size: 1.2rem; }
.action-btn:hover { color: var(--red); }
.cart-btn .cart-badge { position: absolute; top: -6px; right: -8px; background: var(--red);
  color: #fff; font-size: .65rem; font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-account { background: var(--red); color: #fff; padding: 9px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; white-space: nowrap; transition: background .2s; }
.btn-account:hover { background: var(--red-d); }
.burger { display: none; font-size: 1.4rem; color: var(--black); padding: 6px; }

/* NAV */
.navbar { background: var(--black); }
.nav-inner { display: flex; align-items: center; gap: 4px; }
.nav-link { color: #ddd; padding: 14px 16px; font-size: .88rem; font-weight: 500;
  transition: color .2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active { border-bottom: 3px solid var(--red); }
.nav-cta { margin-left: auto; background: var(--red); color: #fff; padding: 10px 22px;
  border-radius: 50px; font-size: .85rem; font-weight: 600; transition: background .2s; }
.nav-cta:hover { background: var(--red-d); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-hover); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 200; }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 11px 18px;
  font-size: .88rem; color: var(--text); transition: background .18s; }
.dropdown-menu a:hover { background: #fef0f2; color: var(--red); }
.dropdown-menu a i { width: 18px; color: var(--red); }

/* ═══════════════════════════════════ HERO ═══════════════════════════════════ */
.hero { position: relative; height: 90vh; min-height: 500px; overflow: hidden; }
.hero-slides { width: 100%; height: 100%; position: relative; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: var(--black); opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(232,0,29,.25) 100%); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column;
  justify-content: center; height: 100vh; min-height: 500px; padding-top: 60px; max-width: 700px; }
.hero-badge { background: var(--red); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 5px 16px; border-radius: 50px; display: inline-block; margin-bottom: 16px; text-transform: uppercase; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.hero-content h1 span { color: var(--red); }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider controls */
.slide-prev, .slide-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,.2); color: #fff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.1rem; backdrop-filter: blur(4px); transition: background .2s; }
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
.slide-prev:hover, .slide-next:hover { background: var(--red); }
.slide-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: .2s; }
.dot.active { background: var(--red); transform: scale(1.3); }

/* ═══════════════════════════════════ STATS RIBBON ═══════════════════════════════════ */
.stats-ribbon { background: var(--red); color: #fff; padding: 22px 0; }
.stats-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.stat-item { display: flex; align-items: center; gap: 12px; }
.stat-item i { font-size: 1.8rem; opacity: .9; }
.stat-item strong { font-size: 1.2rem; font-weight: 700; display: block; }
.stat-item span { font-size: .82rem; opacity: .85; }

/* ═══════════════════════════════════ CATEGORIES ═══════════════════════════════════ */
.categories-section { background: var(--grey); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.cat-card { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition); display: block; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.cat-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px; font-size: 1.6rem; color: #fff; }
.cat-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.cat-card p { font-size: .82rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.cat-count { background: #fef0f2; color: var(--red); font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px; }

/* ═══════════════════════════════════ PRODUCTS ═══════════════════════════════════ */
.products-section { background: #fff; }
.product-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 9px 22px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  border: 2px solid #eee; color: var(--text); transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }

/* Product card */
.product-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: var(--transition); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-card.hidden { display: none; }

.product-img-wrap { position: relative; overflow: hidden; height: 220px; background: #f0f0f0; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; }
.product-badge.new { background: #00a86b; }
.product-badge.promo { background: #ff6b00; }

.product-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column;
  gap: 8px; opacity: 0; transition: opacity .25s; }
.product-card:hover .product-actions { opacity: 1; }
.product-actions button { width: 36px; height: 36px; border-radius: 50%; background: #fff;
  color: var(--text); font-size: .9rem; box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: .2s; }
.product-actions button:hover { background: var(--red); color: #fff; }

.product-info { padding: 18px; }
.product-cat { font-size: .72rem; font-weight: 700; color: var(--red); text-transform: uppercase;
  letter-spacing: .5px; display: block; margin-bottom: 6px; }
.product-info h4 { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.4; }
.product-rating { display: flex; align-items: center; gap: 3px; font-size: .8rem; color: #f5a623; margin-bottom: 10px; }
.product-rating span { color: var(--muted); font-size: .78rem; margin-left: 4px; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price { font-size: 1.05rem; font-weight: 700; color: var(--red); }
.price-old { font-size: .85rem; color: var(--muted); text-decoration: line-through; }
.price-label { font-size: .75rem; color: var(--muted); }

.product-btns { display: flex; gap: 10px; align-items: center; }
.btn-whatsapp { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #25d366; color: #fff; padding: 10px 14px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; transition: .2s; }
.btn-whatsapp:hover { background: #1ebe5d; transform: scale(1.02); }
.btn-cart { width: 40px; height: 40px; border-radius: 50%; background: #f0f0f0; color: var(--text);
  font-size: .9rem; display: flex; align-items: center; justify-content: center; transition: .2s; }
.btn-cart:hover { background: var(--red); color: #fff; }

/* ═══════════════════════════════════ WHY US ═══════════════════════════════════ */
.why-section { background: var(--grey); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-text h2 { font-size: 2rem; font-weight: 700; color: var(--black); margin-bottom: 16px; line-height: 1.3; }
.why-text h2 span { color: var(--red); }
.why-text p { color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.why-list { margin-bottom: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.why-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.why-list li i { color: var(--red); font-size: .9rem; }
.why-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.why-img img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius); background: #e0e0e0; }
.why-badge { position: absolute; bottom: 24px; left: 24px; background: var(--red); color: #fff;
  padding: 14px 20px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.why-badge strong { font-size: 1.8rem; display: block; }
.why-badge span { font-size: .78rem; }

/* ═══════════════════════════════════ PROCESS ═══════════════════════════════════ */
.process-section { background: var(--black); }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: #aaa; }
.process-steps { display: flex; align-items: flex-start; justify-content: center;
  flex-wrap: wrap; gap: 10px; }
.process-step { flex: 1; min-width: 180px; max-width: 220px; text-align: center; }
.step-num { font-size: 3rem; font-weight: 800; color: rgba(232,0,29,.25); line-height: 1; margin-bottom: 4px; }
.step-icon { width: 60px; height: 60px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.4rem; color: #fff; }
.process-step h3 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.process-step p { font-size: .82rem; color: #aaa; line-height: 1.6; }
.process-arrow { color: var(--red); font-size: 1.6rem; padding-top: 50px; opacity: .6; }

/* ═══════════════════════════════════ TESTIMONIALS ═══════════════════════════════════ */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testimonial-card { background: var(--grey); border-radius: var(--radius); padding: 28px; position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 12px; right: 20px;
  font-size: 5rem; color: var(--red); opacity: .15; font-family: Georgia, serif; line-height: 1; }
.testimonial-stars { color: #f5a623; margin-bottom: 14px; }
.testimonial-card p { font-size: .88rem; line-height: 1.75; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--black);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .78rem; color: var(--muted); }

/* ═══════════════════════════════════ DEVIS ═══════════════════════════════════ */
.devis-section { background: linear-gradient(135deg, var(--red) 0%, var(--red-d) 100%); color: #fff; }
.devis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.devis-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 14px; }
.devis-text h2 span { color: #ffcdd2; }
.devis-text p { opacity: .9; margin-bottom: 28px; line-height: 1.7; }
.devis-wa { display: inline-flex; align-items: center; gap: 10px; background: #25d366;
  color: #fff; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: .2s; margin-bottom: 20px; }
.devis-wa:hover { background: #1ebe5d; }
.devis-info p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; opacity: .9; font-size: .9rem; }
.devis-info i { color: #ffcdd2; }
.devis-form { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-hover); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #eee; border-radius: 10px;
  font-family: var(--font); font-size: .9rem; transition: border .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); outline: none; }
.form-group textarea { resize: vertical; }

/* ═══════════════════════════════════ FOOTER ═══════════════════════════════════ */
.footer { background: var(--dark); color: #ccc; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { margin-bottom: 16px; font-size: 1.5rem; font-weight: 800; }
.footer-col p { font-size: .85rem; line-height: 1.8; color: #aaa; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 1rem; transition: .2s; }
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: #aaa; transition: color .2s; }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem;
  color: #aaa; margin-bottom: 12px; }
.footer-contact li i { color: var(--red); margin-top: 2px; width: 14px; }
.footer-newsletter p { font-size: .85rem; color: #aaa; margin-bottom: 10px; }
.newsletter-input { display: flex; overflow: hidden; border-radius: 50px; background: rgba(255,255,255,.08); }
.newsletter-input input { flex: 1; padding: 10px 14px; background: none; border: none;
  font-family: var(--font); color: #fff; font-size: .85rem; }
.newsletter-input input::placeholder { color: #aaa; }
.newsletter-input input:focus { outline: none; }
.newsletter-input button { background: var(--red); color: #fff; padding: 0 16px; font-size: .9rem; transition: .2s; }
.newsletter-input button:hover { background: var(--red-d); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 8px; font-size: .82rem; color: #777; }

/* ═══════════════════════════════════ FLOATING WHATSAPP ═══════════════════════════════════ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px;
  background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999; transition: .25s; }
.whatsapp-float:hover { transform: scale(1.12); background: #1ebe5d; }
.wa-tooltip { position: absolute; right: 70px; white-space: nowrap; background: var(--black);
  color: #fff; padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600;
  opacity: 0; transition: .2s; pointer-events: none; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════ FLOATING PHONE ═══════════════════════════════════ */
.phone-float { position: fixed; bottom: 100px; right: 28px; width: 54px; height: 54px;
  background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(232,0,29,.45);
  z-index: 999; transition: .25s; animation: pulse-phone 2s infinite; }
.phone-float:hover { transform: scale(1.12); background: var(--red-d); animation: none; }
.phone-float:hover .phone-tooltip { opacity: 1; transform: translateX(0); }
.phone-tooltip { position: absolute; right: 64px; white-space: nowrap; background: var(--black);
  color: #fff; padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600;
  opacity: 0; transform: translateX(6px); transition: .2s; pointer-events: none; }
@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,0,29,.45); }
  50%       { box-shadow: 0 4px 32px rgba(232,0,29,.8), 0 0 0 8px rgba(232,0,29,.15); }
}

/* ═══════════════════════════════════ SCROLL TOP ═══════════════════════════════════ */
.scroll-top { position: fixed; bottom: 170px; right: 28px; width: 44px; height: 44px;
  background: var(--red); color: #fff; border-radius: 50%; font-size: 1rem;
  box-shadow: var(--shadow); z-index: 998; opacity: 0; pointer-events: none; transition: .25s; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red-d); transform: translateY(-3px); }

/* ═══════════════════════════════════ MODAL ═══════════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .25s; padding: 20px; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box { background: #fff; border-radius: var(--radius); max-width: 480px; width: 100%;
  padding: 36px; position: relative; transform: scale(.92); transition: transform .25s; }
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border-radius: 50%; background: #f0f0f0; color: var(--text); font-size: .9rem; display: flex; align-items: center; justify-content: center; transition: .2s; }
.modal-close:hover { background: var(--red); color: #fff; }
.modal-body h3 { font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.modal-price { font-size: 1.4rem; font-weight: 800; color: var(--red); margin-bottom: 16px; }
.modal-body p { color: var(--muted); line-height: 1.7; font-size: .9rem; margin-bottom: 24px; }

/* ═══════════════════════════════════ TOAST ═══════════════════════════════════ */
.toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--black); color: #fff; padding: 12px 24px; border-radius: 50px;
  font-size: .9rem; font-weight: 500; z-index: 3000; opacity: 0; transition: .3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════ PLACEHOLDER IMAGES ═══════════════════════════════════ */
.product-img-wrap, .why-img img[src*="placeholder"] {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* ═══════════════════════════════════ RESPONSIVE ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid, .devis-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .header-inner { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
  .search-bar { order: 3; min-width: 100%; }
  .header-actions .action-btn span { display: none; }
  .btn-account span { display: none; }
  .burger { display: flex; margin-left: auto; }
  .navbar { display: none; }
  .navbar.open { display: block; }
  .nav-inner { flex-direction: column; align-items: flex-start; padding: 8px 0; gap: 0; }
  .nav-link { padding: 12px 20px; width: 100%; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-cta { margin: 10px 20px; border-radius: 50px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255,255,255,.05); padding: 0; border-radius: 0; }
  .dropdown-menu a { color: #ccc; padding-left: 36px; }
  .hero { height: 80vh; }
  .hero-content h1 { font-size: 2rem; }
  .stats-inner { gap: 14px; justify-content: center; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .process-steps { gap: 20px; }
  .process-arrow { display: none; }
  .why-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .product-btns { flex-direction: column; }
  .product-btns .btn-cart { width: 100%; border-radius: 50px; height: 40px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
