body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #232629;
    color: #fff;
}

header {
    display: flex;
    align-items: center;
    background: #26B26B;
    padding: 18px 28px;
    border-bottom: 4px solid #fff;
    position: sticky;
    top: 0;
    z-index: 99;
}
.logo {
    width: 48px;
    height: 48px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 18px;
}
.logo svg { width: 34px; height: 34px; }
.brand { font-size: 2.2rem; font-weight: bold; letter-spacing: 2px; color: #232629; }
.slogan { margin-left: 32px; font-size: 1.1rem; font-weight: 400; color: #fff; }

.menu-main {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}
.menu-main a {
    color: #232629;
    font-weight: bold;
    font-size: 1.06rem;
    text-decoration: none;
    background: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    margin-left: 10px;
    transition: background 0.19s, color 0.18s;
    box-shadow: 0 2px 8px rgba(38,178,107,0.08);
}
.menu-main a.boutique {
    background: #26B26B;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 16px rgba(38,178,107,0.16);
    animation: pulse 1.5s cubic-bezier(.66,.05,.36,1.05) infinite 10s;
}
.menu-main a:hover {
    background: #232629;
    color: #26B26B;
    border-color: #26B26B;
}
@media (max-width: 720px) {
    .slogan { display: none; }
    .brand { font-size: 1.4rem; }
    .menu-main a { font-size: 0.97rem; padding: 8px 12px;}
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
    background: linear-gradient(90deg,#26B26B 0%,#232629 100%);
    border-bottom: 3px solid #26B26B;
}
.hero h1 {
    font-size: 2.7rem;
    margin-bottom: 1.1rem;
    margin-top: 1.7rem;
    color: #fff;
    text-shadow: 0 3px 16px rgba(38,178,107,0.18), 0 2px 4px rgba(0,0,0,0.23);
    background: rgba(38,178,107,0.09);
    border-radius: 14px;
    padding: 13px 28px 10px 28px;
    display: inline-block;
}
.hero p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2.2rem;
    max-width: 600px;
}
.cta-btn {
    padding: 1em 2.2em;
    font-size: 1.1rem;
    background: #fff;
    color: #26B26B;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(38,178,107,0.12);
    transition: background 0.2s, color 0.2s;
    animation: pulse 1.6s cubic-bezier(.66,.05,.36,1.05) infinite 12s;
}
.cta-btn:hover { background: #26B26B; color: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(38,178,107,0.28);}
  70% { box-shadow: 0 0 0 14px rgba(38,178,107,0);}
  100% { box-shadow: 0 0 0 0 rgba(38,178,107,0);}
}

/* Section "Comment ça marche ?" */
.steps-section {
    padding:36px 0 0 0;
    background:#232629;
}
.steps-section h2 {
    color:#26B26B;
    font-size:1.29rem;
    margin-bottom:0.2em;
}
.steps-cards {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:26px;
}
.step-card {
    flex:1;
    min-width:170px;
    max-width:190px;
    background:#181A1B;
    border-radius:16px;
    padding:23px 12px;
    text-align:center;
}
.step-card div.emoji {
    font-size:2.3rem;
}

/* Section avis clients Google */
.avis-section {
    background:#202422;
    padding:38px 0 0 0;
}
.avis-section h2 {
    color:#26B26B;
    font-size:1.21rem;
    margin-bottom:0.5em;
}
.avis-cards {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:23px;
}
.avis-card {
    background:#181A1B;
    border-radius:16px;
    padding:19px 18px;
    min-width:230px;
    max-width:330px;
}
.avis-card .stars {
    color:#FFD600;
    font-size:1.6rem;
    margin-bottom:2px;
}
.avis-card .author {
    color:#aaa;
    font-size:0.92rem;
    margin-top:8px;
}
.avis-section .link {
    background:#26B26B;
    color:#fff;
    border-radius:10px;
    padding:8px 20px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 2px 9px rgba(38,178,107,0.13);
    font-size:1.06rem;
    margin-top:22px;
    display:inline-block;
}

/* Galerie */
.galerie-grid {
    opacity: 0;
    transform: translateY(32px);
    animation: galerieFadeIn 0.9s 0.1s ease forwards;
}
@keyframes galerieFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}
.gal-item img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 28px rgba(38,178,107,0.08);
    transition: transform 0.24s cubic-bezier(.4,2,.4,1), box-shadow 0.23s;
    cursor: pointer;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 2px solid #232629;
    background: #232629;
}
.gal-item img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 10px 36px rgba(38,178,107,0.21);
    border-color: #26B26B;
}

/* WhatsApp flottant mobile only */
@media (max-width: 600px) {
    .whatsapp-float { display: block !important; }
}
.whatsapp-float {
    display: none;
    position: fixed;
    bottom: 20px; right: 16px;
    background: #25D366;
    color: #fff;
    font-size: 1.18rem;
    font-weight: bold;
    border-radius: 36px;
    padding: 13px 24px 13px 19px;
    box-shadow: 0 4px 22px rgba(37,211,102,0.21);
    z-index: 3000;
    text-decoration: none;
    animation: pop-in 0.4s cubic-bezier(.41,1.7,.5,1.15) 1;
}
@keyframes pop-in {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive ajustements */
@media (max-width: 900px) {
    .galerie-grid { grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); }
}
@media (max-width: 800px) {
    header, .footer-main { flex-direction:column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 1.36rem; padding:8px 7px; }
    .hero p { font-size:1rem; }
    .steps-cards, .avis-cards { flex-direction:column; gap:18px; }
}
/* Harmonisation formulaire commande */
.checkout-container {
  max-width: 500px;
  margin: 34px auto;
  background: #181A1B;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 8px 38px rgba(38,178,107,0.10);
}
.checkout-container h1 {
  color: #26B26B;
  font-size: 2.1rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}
#checkoutForm label {
  color: #26B26B;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
#checkoutForm input,
#checkoutForm textarea,
#checkoutForm select {
  width: 100%;
  background: #232629;
  border: 2px solid #26B26B;
  border-radius: 13px;
  font-size: 1.06rem;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 16px;
  padding: 13px 13px 10px 13px;
  transition: border 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(38,178,107,0.05);
}
#checkoutForm input:focus,
#checkoutForm textarea:focus,
#checkoutForm select:focus {
  border: 2px solid #26B26B;
  outline: none;
  box-shadow: 0 0 0 2px #26B26B33;
}
#checkoutForm select {
  cursor: pointer;
}
#checkoutForm textarea {
  min-height: 72px;
  resize: vertical;
}
#checkoutForm .btn, .checkout-btn {
  background: #26B26B;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.19
}
.hero-animated-bg {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 450px;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%,#26B26B18 0%,#1b2e22 75%) #11191b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}
.hero-animated-bg svg#bg3dprint {
  position: absolute;
  left: 0; top: 0;
  width: 100vw;
  height: 100%;
  min-height: 370px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  animation: hero-bg-pulse 5s infinite alternate cubic-bezier(.4,1.9,.4,1);
}
@keyframes hero-bg-pulse {
  to { opacity: 1; filter: brightness(1.09) blur(0.3px);}
}
.hero-content-glass {
  position: relative;
  z-index: 2;
  width: 98%;
  max-width: 740px;
  margin: 0 auto;
  background: rgba(17,27,18, 0.84);
  border-radius: 2.2rem;
  box-shadow: 0 8px 44px #26B26B16, 0 1px 18px #0007;
  padding: 48px 28px 36px 28px;
  backdrop-filter: blur(2.8px);
  text-align: center;
  border: 1px solid #26B26B22;
  overflow: hidden;
}
.glow-title {
  color: #fff;
  text-shadow: 0 0 32px #26B26B80, 0 2px 16px #26B26B66;
  font-size: 2.08rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.glow-sub {
  font-size: 1.22em;
  font-weight: 700;
  letter-spacing: .01em;
  color: #26B26B;
  text-shadow: 0 0 12px #26B26B44, 0 2px 8px #23232640;
  display: block;
  margin-top: 6px;
}
.hero-content-glass p {
  font-size: 1.13rem;
  color: #e7fff4;
  margin-bottom: 2em;
  line-height: 1.47;
}
.glass-blur {
  background: linear-gradient(90deg,#26b26b0d 30%,#ffffff0a 100%);
  border-radius: 12px;
  padding: 4px 8px;
  backdrop-filter: blur(2.5px);
  display: inline-block;
}
.cta-btn {
  display: inline-block;
  padding: 1rem 2.1rem;
  background: linear-gradient(92deg,#26B26B 5%, #184F34 100%);
  color: #fff;
  border-radius: 2.6rem;
  font-weight: 700;
  font-size: 1.14rem;
  margin-bottom: 1.15em;
  text-decoration: none;
  box-shadow: 0 2px 18px #26B26B15;
  border: none;
  cursor: pointer;
  transition: background .18s, color .17s, filter .2s;
  filter: drop-shadow(0 0 12px #26B26B33);
}
.cta-btn:hover { background: #fff; color: #26B26B; filter:brightness(1.13);}
.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-top: 0.1em;
}
.hero-cta {
  padding: 0.67em 1.6em;
  border-radius: 1.7em;
  font-size: 1.06rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.3em;
  box-shadow: 0 1px 12px #26B26B12;
  transition: background .17s, color .17s, filter .2s;
}
.hero-cta.wa {
  background: linear-gradient(90deg,#26B26B 78%,#184F34 100%);
  color: #fff;
}
.hero-cta.mail {
  background: #232629;
  color: #26B26B;
  border: 1px solid #26B26B33;
}
.hero-cta.wa:hover, .hero-cta.mail:hover {
  filter: brightness(1.15) drop-shadow(0 0 8px #26B26B55);
  color: #fff;
}
@media (max-width:800px){
  .hero-content-glass { padding: 16px 5px 10px 5px;}
  .glow-title { font-size: 1.12rem;}
  .glow-sub { font-size: 1.01rem;}
  .hero-animated-bg { min-height: 180px;}
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.card {
  background: linear-gradient(145deg, #1c1c1c, #111);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px #0008;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.03);
}
iframe {
  width: 100%;
  height: 300px;
  border: none;
}
.info {
  padding: 1rem;
}
.info h2 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
.info p {
  font-size: 0.9rem;
  color: #ccc;
}
.tag {
  display: inline-block;
  background: #00cccc;
  color: #000;
  padding: 4px 10px;
  border-radius: 8px;
  margin-top: 0.5rem;
  font-size: 0.75rem;
}
.btn {
  display: block;
  text-align: center;
  margin: 1rem auto 0;
  padding: 10px 16px;
  background: #00ffff;
  color: #000;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
}
.btn:hover {
  background: #00cccc;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #2a2a2d;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card iframe {
  width: 100%;
  height: 300px;
  border: none;
  background: #000;
}

.card h2 {
  font-size: 1.2rem;
  margin: 1rem;
  color: #f5f5f5;
}

.card p {
  font-size: 0.9rem;
  margin: 0 1rem;
  color: #bbbbbb;
}

.card .tag {
  margin: 0.5rem 1rem;
  display: inline-block;
  background: #444;
  color: #fff;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 0.5rem;
}

.card .dl-btn {
  display: block;
  text-align: center;
  margin: 1rem;
  padding: 0.6rem;
  background: #f4e5c4;
  color: #1c1c1e;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0.5rem;
}

.card .dl-btn:hover {
  background: #e0d6b2;
}


