    :root{
      --bg:#081018;
      --bg2:#0d1621;
      --card:#111b28;
      --line:rgba(120,255,170,.14);
      --green:#35e27b;
      --green2:#1fbf66;
      --text:#e8eef6;
      --muted:#9fb0c3;
    }
    body{
      background:
        radial-gradient(circle at top left, rgba(53,226,123,.10), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, #0b121a 52%, #071018 100%);
      color:var(--text);
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
    }
    .navbar{
      background:rgba(8,16,24,.82);
      backdrop-filter:blur(12px);
      border-bottom:1px solid var(--line);
    }
    .navbar .nav-link, .navbar-brand, .footer-link{color:var(--text)!important}
    .navbar .nav-link:hover{color:var(--green)!important}
    .hero{
      position:relative;
      overflow:hidden;
      padding:88px 0 72px;
      border-bottom:1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(13,22,33,.92), rgba(8,16,24,.82)),
        url('images/hero-placeholder.jpg') center/cover no-repeat;
      min-height:82vh;
      display:flex;
      align-items:center;
    }
    .footer{border-top:1px solid var(--line)}
    .hero-card,.info-card,.spec-card{
      background:linear-gradient(180deg, rgba(17,27,40,.96), rgba(13,22,33,.96));
      border:1px solid rgba(120,255,170,.12);
      box-shadow:0 12px 40px rgba(0,0,0,.25);
    }
	.breadcrumb-item.active	 {
		color: #fff;
	}
     .hero{
      position:relative;
      overflow:hidden;
      padding:88px 0 72px;
      border-bottom:1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(13,22,33,.92), rgba(8,16,24,.82)),
        url('images/hero-placeholder.jpg') center/cover no-repeat;
      min-height:82vh;
      display:flex;
      align-items:center;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
    }
    .hero .container{position:relative;z-index:1}
    .badge-soft{
      background:rgba(53,226,123,.12);
      border:1px solid rgba(53,226,123,.24);
      color:var(--green);
    }
    .text-green{color:var(--green)}
    .hero-card, .info-card, .product-card{
      background:linear-gradient(180deg, rgba(17,27,40,.96), rgba(13,22,33,.96));
      border:1px solid rgba(120,255,170,.12);
      box-shadow:0 12px 40px rgba(0,0,0,.25);
    }
    .hero-image{
      min-height:420px;
      border-radius:24px;
      background:
        linear-gradient(180deg, rgba(53,226,123,.18), rgba(8,16,24,.08)),
        url('images/phone-placeholder.jpg') center/cover no-repeat;
      border:1px solid rgba(53,226,123,.18);
    }
    .text-green{color:var(--green)}
    .badge-soft{
      background:rgba(53,226,123,.12);
      border:1px solid rgba(53,226,123,.24);
      color:var(--green);
    }
    .product-image{
      min-height:470px;
      border-radius:24px;
      background:
        linear-gradient(180deg, rgba(53,226,123,.16), rgba(8,16,24,.08)),
        url('images/phone-placeholder.jpg') center/cover no-repeat;
      border:1px solid rgba(53,226,123,.18);
    }
/* ===== Product card ===== */
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef0f2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

/* ===== Image container : ratio fixe et homogène ===== */
.product-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;      /* carré parfait, change en 4/3 si besoin */
  overflow: hidden;
  background: #f5f6f8;      /* fond neutre pendant le chargement */
  display: block;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* recadre sans déformer */
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);   /* léger zoom au survol */
}

/* ===== Contenu texte ===== */
.product-card .p-3 {
  padding: 1rem 1.1rem 1.2rem !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card h3.h6 {
  font-size: 1rem;
  font-weight: 600;
  min-height: 2.6em;         /* aligne les titres sur 2 lignes */
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
    .section-pad{padding:64px 0}
    .section-title{
      position:relative;
      padding-bottom:14px;
      margin-bottom:22px;
    }
    .section-title::after{
      content:"";
      position:absolute;
      left:0;bottom:0;
      width:84px;height:3px;
      background:linear-gradient(90deg, var(--green), transparent);
      border-radius:999px;
    }
/* ===== CTA aligné en bas de carte ===== */
.btn-green {
  margin-top: auto;
  background-color: #1f9d55;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  transition: background-color 0.2s ease;
}

.btn-green:hover {
  background-color: #17803f;
  color: #fff;
}

/* ===== Ajustements responsive ===== */
@media (max-width: 576px) {
  .product-card h3.h6 {
    font-size: 0.9rem;
  }
  .btn-green {
    font-size: 0.85rem;
  }
}
    .btn-outline-green{
      border:1px solid rgba(53,226,123,.45);
      color:var(--green);
    }
    .btn-outline-green:hover{background:rgba(53,226,123,.12);color:var(--green)}
.small-muted {
  color: #6b7280;
  font-size: 0.95rem;
}
    .icon-box{
      width:50px;height:50px;border-radius:16px;
      display:inline-flex;align-items:center;justify-content:center;
      background:rgba(53,226,123,.12);
      color:var(--green);
      border:1px solid rgba(53,226,123,.18);
      font-size:1.2rem;
    }
    a{text-decoration:none}
	
	.product-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(53,226,123,.18);
  background: linear-gradient(180deg, rgba(53,226,123,.10), rgba(8,16,24,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.product-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
  padding: 16px;
  display:
  block;
}
.product-img {
  filter: drop-shadow(0 8px 32px rgba(53,226,123,.18));
}

/* ── GALERIE ────────────────────────────────────── */
.gallery-wrap{display:flex;flex-direction:column;gap:14px}
.gallery-main{
  position:relative;
  border-radius:20px;overflow:hidden;
  background:linear-gradient(180deg,rgba(53,226,123,.08),rgba(8,16,24,.18));
  border:1px solid rgba(120,255,170,.16);
  display:flex;align-items:center;justify-content:center;
  min-height:380px;
  box-shadow:0 16px 48px rgba(0,0,0,.35);
  cursor:zoom-in;
}
.gallery-main img{
  max-height:420px;width:100%;
  object-fit:contain;padding:20px;
  transition:opacity .25s ease, transform .25s ease;
  display:block;
  filter:drop-shadow(0 8px 28px rgba(53,226,123,.15));
}
.gallery-main img.fade{opacity:0;transform:scale(.97)}
.gallery-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(13,22,33,.82);
  border:1px solid rgba(120,255,170,.22);
  color:var(--green);
  width:42px;height:42px;border-radius:50%;
  font-size:1.5rem;line-height:1;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .2s,border-color .2s;
  padding:0;
}
.gallery-arrow:hover{background:rgba(53,226,123,.18);border-color:var(--green)}
.gallery-prev{left:14px}
.gallery-next{right:14px}
.gallery-counter{
  position:absolute;bottom:12px;right:16px;
  background:rgba(13,22,33,.75);
  border:1px solid rgba(120,255,170,.18);
  color:var(--muted);font-size:.78rem;
  padding:3px 10px;border-radius:999px;
}
.gallery-thumbs{
  display:flex;gap:10px;overflow-x:auto;
  padding-bottom:4px;scroll-snap-type:x mandatory;
}
.gallery-thumbs::-webkit-scrollbar{height:4px}
.gallery-thumbs::-webkit-scrollbar-track{background:transparent}
.gallery-thumbs::-webkit-scrollbar-thumb{background:rgba(53,226,123,.25);border-radius:999px}
.thumb{
  flex:0 0 calc(20% - 9px);
  min-width:68px;max-width:100px;
  border-radius:12px;overflow:hidden;
  border:2px solid rgba(120,255,170,.12);
  background:rgba(13,22,33,.8);
  cursor:pointer;scroll-snap-align:start;
  transition:border-color .2s,transform .2s;
  padding:0;
}
.thumb:hover{border-color:rgba(53,226,123,.45);transform:translateY(-2px)}
.thumb.active{border-color:var(--green);box-shadow:0 0 0 2px rgba(53,226,123,.25)}
.thumb img{width:100%;aspect-ratio:1/1;object-fit:cover;display:block}
@media(max-width:575px){
  .gallery-main{min-height:260px}
  .gallery-main img{max-height:280px}
  .thumb{min-width:54px}
}
/* ── FIN GALERIE ────────────────────────────────── */

.text-light-emphasis {
	color:#fff !important;
	}
	
    .kpi{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(120,255,170,.10);
    }
    .footer{
      border-top:1px solid var(--line);
      background:#050b11;
    }
    .small-muted{color:var(--muted)}
    a{text-decoration:none}
    .breadcrumb a{color:var(--muted)}
    .breadcrumb .active{color:var(--text)}