/* ═══ VARIABLES ══════════════════════════════════════ */
:root {
  --green-deep:  #1a3d2b;
  --green-main:  #2d5a3d;
  --green-mid:   #4a7a5d;
  --green-lt:    #6b9a7d;
  --steel:       #4a5568;
  --steel-lt:    #6b7280;
  --steel-dk:    #2d3748;
  --orange:      #f97316;
  --orange-lt:   #fb923c;
  --white:       #ffffff;
  --off:         #f9fafb;
  --warm:        #f3f4f6;
  --text:        #1f2937;
  --text-mid:    #4b5563;
  --text-lt:     #6b7280;
  --line:        #e5e7eb;
  --sh-sm:       0 2px 12px rgba(26,61,43,0.08);
  --sh:          0 6px 32px rgba(26,61,43,0.12);
  --sh-lg:       0 16px 60px rgba(26,61,43,0.18);
  --r:           10px;
  --r-sm:        5px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* ═══ HEADER ══════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.3); }
.hdr-wrap {
  max-width: 1360px; margin: 0 auto;
  padding: 0 2.5rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; color: var(--orange); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Archivo Narrow', sans-serif; font-size: 1rem; font-weight: 700; color: white; letter-spacing: 0.08em; }
.logo-tag { font-size: 0.6rem; color: rgba(255,255,255,0.35); letter-spacing: 0.12em; text-transform: uppercase; }

#mainNav { display: flex; align-items: center; gap: 0; }
#mainNav a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.45rem 0.85rem; border-radius: var(--r-sm);
  transition: all 0.2s;
}
#mainNav a:hover { color: white; background: rgba(255,255,255,0.08); }

.hdr-actions { display: flex; align-items: center; gap: 0.7rem; }
.hdr-tel {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--orange-lt); text-decoration: none;
  font-size: 0.8rem; font-weight: 600;
  transition: color 0.2s;
}
.hdr-tel:hover { color: white; }
.cart-btn {
  position: relative; width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white;
  transition: all 0.2s;
}
.cart-btn:hover { background: rgba(255,255,255,0.15); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--orange); color: white;
  font-size: 0.7rem; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 20px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: 0.3s; }

.mob-nav {
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--green-deep); z-index: 999;
  padding: 1.25rem 2rem; display: flex; flex-direction: column; gap: 0.1rem;
  border-bottom: 2px solid var(--orange);
  transform: translateY(-110%);
  transition: transform 0.3s;
  box-shadow: var(--sh-lg);
}
.mob-nav.open { transform: translateY(0); }
.mob-nav a { color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.7rem 0.7rem; border-radius: var(--r-sm); font-size: 0.88rem; transition: all 0.2s; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mob-nav a:last-child { border-bottom: none; }
.mob-nav a:hover { color: white; background: rgba(255,255,255,0.06); }
.mob-nav .mob-tel { background: var(--orange); color: white; font-weight: 700; text-align: center; margin-top: 0.5rem; border: none; }

/* ═══ HERO ════════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--green-deep);
  display: flex; align-items: center;
  padding: 7rem 2.5rem 4rem; position: relative; overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,0.02) 49px, rgba(255,255,255,0.02) 50px),
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,0.02) 49px, rgba(255,255,255,0.02) 50px);
  pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(249,115,22,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-wrap {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem; align-items: center; width: 100%;
  position: relative; z-index: 1;
}
.hero-label {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-lt); margin-bottom: 2rem;
}
.label-bar { display: block; width: 24px; height: 1px; background: var(--orange); }
.hero-title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: clamp(3rem,5.5vw,5.5rem); font-weight: 700; line-height: 1;
  color: white; margin-bottom: 1.75rem; letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--orange-lt); font-weight: 600; }
.hero-desc { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 520px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: var(--orange); color: white;
  text-decoration: none; padding: 0.85rem 2rem;
  border-radius: var(--r-sm); font-size: 0.88rem; font-weight: 700;
  transition: all 0.25s; border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.35); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.7);
  text-decoration: none; padding: 0.85rem 1.75rem;
  border-radius: var(--r-sm); font-size: 0.88rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { color: white; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.hero-kpis { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.kpi { display: flex; align-items: center; gap: 0.5rem; }
.kpi-icon { font-size: 1rem; }
.kpi-text { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.kpi-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }

.hero-right { position: relative; }
.hero-card { position: relative; }
.fence-svg { border-radius: 16px; box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.hero-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: white; border-radius: var(--r);
  padding: 0.85rem 1.1rem; display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--sh-lg); min-width: 180px;
}
.badge-icon { width: 24px; height: 24px; border-radius: 50%; background: #10b981; color: white; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.hero-badge strong { display: block; font-size: 0.82rem; color: var(--text); }
.hero-badge span { font-size: 0.7rem; color: var(--text-lt); display: block; margin-top: 0.1rem; }

/* ═══ STRIP ═══════════════════════════════════════════ */
.strip { background: var(--steel-dk); padding: 0.85rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.strip-inner { max-width: 1360px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.si-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.strip-sep { color: rgba(255,255,255,0.15); font-size: 0.9rem; }

/* ═══ SECTIONS ════════════════════════════════════════ */
section { padding: 6rem 2.5rem; }
.si { max-width: 1360px; margin: 0 auto; }
.sh { max-width: 620px; margin-bottom: 3.5rem; }
.sh.centered { max-width: 600px; margin: 0 auto 3.5rem; text-align: center; }
.eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.85rem; }
.eyebrow.light { color: var(--orange-lt); }
.s-title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; line-height: 1.1;
  color: var(--text); margin-bottom: 1rem;
}
.s-title em { font-style: italic; color: var(--green-main); }
.s-title.light { color: white; }
.s-title.light em { color: var(--orange-lt); }
.s-sub { font-size: 0.94rem; line-height: 1.75; color: var(--text-mid); }

/* ═══ PRODUITS ════════════════════════════════════════ */
.produits-section { background: var(--off); }
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.pc {
  background: white; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.pc:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--green-main); }
.pc.large { grid-column: 1 / 3; display: grid; grid-template-columns: 1fr 1.2fr; }
.pc-vis {
  display: flex; align-items: center; justify-content: center;
  background: var(--green-deep); min-height: 180px;
}
.pc.large .pc-vis { min-height: unset; }
.pc-v2 { background: linear-gradient(135deg, #1a3d2b, #2d5a3d); }
.pc-v3 { background: linear-gradient(135deg, #4a5568, #2d3748); }
.pc-v4 { background: linear-gradient(135deg, #2d5a3d, #1a3d2b); }
.pc-v5 { background: linear-gradient(135deg, #4a5568, #6b7280); }
.pc-v6 { background: linear-gradient(135deg, #1e293b, #334155); }
.pc-ico { font-size: 4rem; color: rgba(255,255,255,0.3); filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3)); transition: transform 0.3s; }
.pc:hover .pc-ico { transform: scale(1.08); }
.pc-body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.pc-cat { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem; }
.pc-title { font-family: 'Archivo Narrow', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.pc-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.pc-list { list-style: none; margin-bottom: 1.2rem; flex: 1; }
.pc-list li { position: relative; padding-left: 1.1rem; font-size: 0.8rem; color: var(--text-mid); margin-bottom: 0.35rem; line-height: 1.5; }
.pc-list li::before { content: '→'; position: absolute; left: 0; color: var(--green-mid); font-size: 0.72rem; }
.pc-btn {
  background: var(--green-main); color: white; border: none;
  padding: 0.7rem 1.5rem; border-radius: var(--r-sm);
  font-size: 0.82rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s;
}
.pc-btn:hover { background: var(--green-deep); transform: translateY(-1px); }

/* ═══ AVANTAGES ═══════════════════════════════════════ */
.avantages-section { background: var(--green-deep); }
.avantages-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.av-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r); padding: 2rem 1.75rem;
  text-align: center; transition: all 0.3s;
}
.av-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.av-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.av-card h3 { font-family: 'Archivo Narrow', sans-serif; font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.6rem; }
.av-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ═══ FAQ ═════════════════════════════════════════════ */
.faq-section { background: var(--warm); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; align-items: start; }
.faq-intro { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin: 1rem 0 2rem; }
.faq-cta { margin-bottom: 1.5rem; }
.faq-tel { font-family: 'Archivo Narrow', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--orange); text-decoration: none; display: block; margin-bottom: 0.3rem; }
.faq-tel:hover { color: var(--text); }
.faq-hours { font-size: 0.75rem; color: var(--text-lt); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.15rem 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  cursor: pointer; font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green-deep); }
.faq-icon { font-size: 1.3rem; color: var(--orange); transition: transform 0.3s; flex-shrink: 0; line-height: 1; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 0 1.15rem; }
.faq-a p { font-size: 0.86rem; line-height: 1.75; color: var(--text-mid); }

/* ═══ CONTACT ═════════════════════════════════════════ */
.contact-section { background: var(--steel-dk); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.cg-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 1rem 0 2rem; }
.cg-infos { display: flex; flex-direction: column; gap: 1rem; }
.cgi { display: flex; align-items: flex-start; gap: 0.8rem; }
.cgi-ico { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.cgi-lbl { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }
.cgi-val { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.cgi-val a { color: var(--orange-lt); text-decoration: none; }
.cgi-val a:hover { color: white; }

.cform { display: flex; flex-direction: column; gap: 1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.fg input, .fg select, .fg textarea {
  padding: 0.75rem 1rem; border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); font-family: 'Work Sans', sans-serif;
  font-size: 0.86rem; color: white; background: rgba(255,255,255,0.05);
  transition: all 0.2s; outline: none; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--orange); background: rgba(255,255,255,0.08); }
.fg select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f97316' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.fg select option { background: var(--steel-dk); }
.fg textarea { resize: vertical; min-height: 100px; }
.btn-submit { background: var(--orange); color: white; border: none; padding: 0.95rem 2rem; border-radius: var(--r-sm); font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: all 0.25s; align-self: flex-start; }
.btn-submit:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.35); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-legal { font-size: 0.7rem; color: rgba(255,255,255,0.25); line-height: 1.6; }
.form-ok { display: none; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; padding: 1rem 1.2rem; border-radius: var(--r-sm); font-size: 0.84rem; }
.form-ok.show { display: block; }

/* ═══ FOOTER ══════════════════════════════════════════ */
footer { background: #0f1419; padding: 4.5rem 2.5rem 2rem; }
.ft-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.ft-logo { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem; }
.ft-desc { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.7; margin-bottom: 1.2rem; }
.ft-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.ft-badge { background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.25); color: var(--orange); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 4px; }
.ft-col h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.2rem; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 0.5rem; }
.ft-col ul li a { color: rgba(255,255,255,0.32); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.ft-col ul li a:hover { color: var(--orange-lt); }
.ft-contact { margin-bottom: 1rem; }
.ftci { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.32); }
.ftci a { color: rgba(255,255,255,0.32); text-decoration: none; }
.ftci a:hover { color: var(--orange-lt); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ft-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.2); }
.ft-bottom a { color: rgba(255,255,255,0.28); text-decoration: none; }
.ft-bottom a:hover { color: var(--orange-lt); }
.ft-legal { display: flex; gap: 1.5rem; }
.ft-legal a { color: rgba(255,255,255,0.2); text-decoration: none; font-size: 0.74rem; }

/* ═══ CART DRAWER ═════════════════════════════════════ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 90vw;
  background: white; z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-family: 'Archivo Narrow', sans-serif; font-size: 1.15rem; font-weight: 700; }
.cart-close { background: none; border: none; font-size: 1.5rem; color: var(--text-lt); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-sm); transition: all 0.2s; }
.cart-close:hover { background: var(--warm); color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 1.75rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-empty-icon { font-size: 4rem; color: var(--line); margin-bottom: 1rem; }
.cart-empty p { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.cart-empty span { font-size: 0.86rem; color: var(--text-lt); }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: none; }
.ci-icon { font-size: 2rem; color: var(--green-main); flex-shrink: 0; }
.ci-info { flex: 1; }
.ci-name { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.ci-price { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.ci-controls { display: flex; align-items: center; gap: 0.6rem; }
.ci-qty-btn { width: 26px; height: 26px; border: 1px solid var(--line); background: white; border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; transition: all 0.2s; }
.ci-qty-btn:hover { background: var(--warm); border-color: var(--green-main); }
.ci-qty { font-size: 0.86rem; font-weight: 600; min-width: 20px; text-align: center; }
.ci-remove { background: none; border: none; color: #ef4444; font-size: 0.8rem; cursor: pointer; margin-left: auto; padding: 0.2rem 0.5rem; border-radius: 4px; transition: background 0.2s; }
.ci-remove:hover { background: #fef2f2; }
.cart-footer { padding: 1.5rem 1.75rem; border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0.6rem; }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 1rem 0 1.25rem; }
.checkout-btn { width: 100%; background: var(--green-main); color: white; border: none; padding: 1rem; border-radius: var(--r-sm); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.25s; margin-bottom: 0.75rem; }
.checkout-btn:hover { background: var(--green-deep); }
.shopify-badge { text-align: center; font-size: 0.75rem; color: var(--text-lt); }

/* ═══ TOAST ═══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-deep); color: white;
  padding: 1rem 1.5rem; border-radius: var(--r);
  font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--sh-lg); z-index: 2000;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══ FAB ═════════════════════════════════════════════ */
.fab {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 54px; height: 54px; background: var(--orange);
  color: white; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  cursor: pointer; z-index: 900;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: all 0.35s;
}
.fab.on { opacity: 1; pointer-events: all; transform: translateY(0); }
.fab:hover { background: var(--orange-lt); transform: scale(1.1); }
.fab-count { position: absolute; top: -4px; right: -4px; background: var(--green-deep); color: white; font-size: 0.7rem; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; }

/* ═══ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .pc.large { grid-column: 1 / 3; display: flex; flex-direction: column; }
  .avantages-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ft-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #mainNav { display: none; }
  .burger { display: flex; }
  .hdr-tel { display: none; }
  .prod-grid { grid-template-columns: 1fr; }
  .pc.large { grid-column: 1; }
  .avantages-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .hero-kpis { gap: 1rem; }
  .strip-inner { gap: 0.75rem; }
  .strip-sep { display: none; }
}
@media (max-width: 580px) {
  .ft-top { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
}
