@font-face {
  font-family: "MarcellusSC";
  src: url('font/MarcellusSC-Regular.ttf');
  font-display: swap;
}

@font-face {
  font-family: "CormorantGaramond";
  src: url('font/CormorantGaramond-Medium.ttf');
  font-display: swap;
}

@font-face {
  font-family: "gigi";
  src: url('font/gigi.ttf');
  font-display: swap;
}

@font-face {
  font-family: "celt";
  src: url('font/celt.ttf');
  font-display: swap;
}

@font-face {
  font-family: "avatar";
  src: url('font/avatar.ttf');
  font-display: swap;
}



/* ===========================
   GLOBAL STYLES
=========================== */
body {
  background: black;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  background-repeat: no-repeat;
background-size: cover;

}


/* ===========================
   POPUP PROMO
=========================== */
.popup-offer {
  display: none;
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #110502 0%, #1a0a0f 100%);
  border-bottom: 2px solid #FF7F50;
  color: #65FF00;
  font-family: "MarcellusSC", serif;
  font-size: 0.9em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 1rem 1.3rem;
}

.popup-offer .popup-text {
  font-size: 1.1em;
  margin-right: 1rem;
}

.popup-offer .cta-button.small {
  font-size: 0.8em;
  padding: 0.3rem 0.3rem;
  border-radius: 6px;
  background-image: linear-gradient(62deg, #32CD32 0%, #00FF00 100%);
  color: black;
  text-decoration: none;
}

#close-popup {
  cursor: pointer;
  color: #FF7F50;
  margin-left: 1rem;
}

/* ===========================
   COOKIE BOX
=========================== */
.cookie-box {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-top: 0.6em;

  background: linear-gradient(
    90deg,
    rgba(26, 10, 15, 0.95) 0%,
    rgba(40, 15, 20, 0.95) 100%
  );

  color: #65FF00;
  font-size: 0.9em;
  font-family: "MarcellusSC", serif;

  border-top: 2px solid #FF7F50;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.8);

  backdrop-filter: blur(4px);
  z-index: 9999;
}


.cookie-box--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cookie-button {
  cursor: pointer;
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.3rem 0.3rem;
  margin-left: 0.5rem;
  font-size: 0.9em;
  font-family: "MarcellusSC", serif;
  letter-spacing: 1px;
  color: #000;
  background-image: linear-gradient(62deg, #32CD32 0%, #00FF00 100%);
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 255, 0, 0.6);
}


/* ===========================
   TITRES ET TEXTES
=========================== */
h1,
h2,
h3 {
  position: relative;
  display: inline-block;
}



h1 {
  margin: 8px auto 0.6em auto;
  font-family: avatar;
  color: #65FF00;
  text-shadow:
  0 0 5px rgba(255, 127, 80, 0.5),
  0 0 10px rgba(255, 127, 80, 0.3),
  0 0 20px rgba(255, 127, 80, 0.2);
  font-size: 2.5em;
  font-weight: 800;
}

h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 75%;
  height: 3px;
  background: #6EE7FF;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(110, 231, 255, 0.7);
}


h2 {
  margin: 8px auto 0.6em auto;
  font-family: "MarcellusSC", serif;
  font-size: 1.6em;
  color: #65FF00;
  text-shadow:
  0 0 5px rgba(255, 127, 80, 0.5),
  0 0 10px rgba(255, 127, 80, 0.3),
  0 0 20px rgba(255, 127, 80, 0.2);

}



h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: #5ACAE8;
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(90, 202, 232, 0.6);
  font-family: "MarcellusSC", serif;
}


h3 {
  margin: 8px auto 0.6em auto;
  font-size: 1.5em;
  font-family: "MarcellusSC", serif;
  padding: 6px 6px;
  border-radius: 6px;
  color: #65FF00;
  text-shadow:
  0 0 5px rgba(255, 127, 80, 0.5),
  0 0 10px rgba(255, 127, 80, 0.3),
  0 0 20px rgba(255, 127, 80, 0.2);
}


h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 75%;
  height: 2px;
  background: #46A0DC;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(70, 160, 220, 0.55);
}



.product-card h3,
.featured-product .product-name {
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(110, 231, 255, 0.6), 0 0 14px rgba(110, 231, 255, 0.45), 0 0 28px rgba(110, 231, 255, 0.25);
}



.product-card h3::after,
.featured-product .product-name::after {
  content: none;
}


strong {
  font-size: 1.02em;
 font-family: celt;
color: #65FF00;
text-shadow:
  0 0 4px rgba(212, 175, 55, 0.5),
  0 0 8px rgba(184, 134, 11, 0.35),
  0 0 16px rgba(160, 120, 40, 0.25);
}

strong:hover {
  color: #1df1ad;
}

p {
  font-family: gigi;
  font-size: 1.32em;
  color: ghostwhite;
  text-align: center;
  line-height: 1.2;
}

p a {
  font-family: celt;
color: #65FF00;
text-shadow:
  0 0 5px rgba(255, 127, 80, 0.5),
  0 0 10px rgba(255, 127, 80, 0.3),
  0 0 20px rgba(255, 127, 80, 0.2);
  text-decoration: none;
  font-size: 1em;
  padding: 0.2rem;
  border-radius: 6px;
}

p a:hover {
  color: #1df1ad;
}


/* ===========================
   PRODUITS & PRIX
=========================== */
.product-card h3 {
  font-family: celt;
color: ghostwhite;
  font-size: 1.2em;
  padding: 12px 16px;
}

.featured-product .product-name {
  font-family: celt;
color: ghostwhite;
  font-size: 1.2em;
}



.fantasy-list {
  width: 70%;
  margin: 0.5em auto 1.5em auto;

  padding-left: 0.8em; /* rapproche les puces du texte */
  list-style-position: inside;

  font-family: gigi;
  color: #65FF00;
  text-align: center;
  line-height: 1.2;
}

.fantasy-list li {
  margin-bottom: 0.5em;
  line-height: 1.2;
  text-shadow:
    0 0 4px rgba(110, 231, 255, 0.35),
    0 0 10px rgba(110, 231, 255, 0.15);
}



/* ===========================
   CTO BUTTON
=========================== */
.cto-button {
  background: #00FFFF; /* cyan fantomatique */
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "gigi";
  font-size: 1.2em;
  padding: 15px 28px;
  text-align: center;
  text-decoration: none;
  margin-top: 12px;
  margin-bottom: 12px;

  /* glow fantomatique */
  box-shadow:
    0 0 6px rgba(0, 255, 255, 0.9),
    0 0 14px rgba(0, 255, 255, 0.6),
    0 0 28px rgba(0, 255, 255, 0.4);

  /* texte bien lisible */
  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.7),
    0 0 6px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.4);
}


/* survol : léger renforcement fantôme */
.cto-button:hover {
  background: #33ffff;
  box-shadow:
    0 0 10px rgba(0, 255, 255, 1),
    0 0 22px rgba(0, 255, 255, 0.8),
    0 0 40px rgba(0, 255, 255, 0.6);
}

.cto-button{
  width: 20%;
}


/* ===========================
   DÉCORATIONS RÉCENTES
=========================== */

.imgnew3{
margin-top: 12px;
margin-bottom: 12px;
width: 240px;
height: 240px;
border-radius: 6px; 
}

.imgnew3:hover {
box-shadow: 0 0 6px rgba(110, 231, 255, 0.6), 0 0 14px rgba(110, 231, 255, 0.45), 0 0 28px rgba(110, 231, 255, 0.25);
border-radius: 6px;
}

.latest-products {
  text-align: center;
  color: #65FF00;
}



.product-grid {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product-card {
  flex: 0 1 25%;
  max-width: 250px;
  box-sizing: border-box;
  border-radius: 6px;
}


.product-card:hover {
box-shadow:
  0 0 6px rgba(110, 231, 255, 0.6),
  0 0 14px rgba(110, 231, 255, 0.45),
  0 0 28px rgba(110, 231, 255, 0.25),

  /* encadrement intérieur – vert lierre */
  inset 0 0 0 1px rgba(42, 77, 56, 0.85),
  inset 0 0 0 2px rgba(20, 45, 32, 0.9);

border-radius: 6px;
padding: 6px; 
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
  object-fit: contain;
  background-color: #110502;
  border-radius: 6px;
}

/* ===========================
   PRODUIT VEDETTE
=========================== */
.featured-products-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1rem 0;
  text-align: center;
}

.featured-product {
  width: 320px;
}

.featured-product:hover {
/* encadrement extérieur – cyan lumineux */
box-shadow:
  0 0 6px rgba(110, 231, 255, 0.6),
  0 0 14px rgba(110, 231, 255, 0.45),
  0 0 28px rgba(110, 231, 255, 0.25),

  /* encadrement intérieur – vert lierre */
  inset 0 0 0 1px rgba(42, 77, 56, 0.85),
  inset 0 0 0 2px rgba(20, 45, 32, 0.9);

border-radius: 6px;
padding: 6px;
}

.featured-product img {
  width: 90%;
  height: auto;
  margin-bottom: 0.5rem;
  object-fit: contain;
  background-color: #110502;
  border-radius: 96px;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  margin: 2em 0;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-card {
  background-color: #1a0a0f;
  border-radius: 12px;
  padding: 1rem;
  max-width: 280px;
  text-align: center;
  color: #65FF00;
  font-family: "CormorantGaramond", serif;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.testimonial-name {
  font-family: "MarcellusSC", serif;
  font-weight: bold;
  color: gold;
  margin-bottom: 0.3em;
}

.testimonial-rating {
  color: #FF7F50;
  margin-bottom: 0.5em;
}

.testimonial-comment {
  font-size: 1.1em;
  margin-bottom: 0.5em;
}

.testimonial-date {
  font-size: 0.9em;
  color: #AAAAAA;
}






/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {

  .popup-offer {
    font-size: 0.8em;
    padding: 0.5rem 0.6rem;
    gap: 0.5rem;
  }

  .popup-offer .popup-text {
    font-size: 1em;
  }

  .popup-offer .cta-button.small {
    font-size: 0.75em;
    padding: 0.3rem 0.5rem;
  }

  #close-popup {
    font-size: 1em;
    margin-left: 0;
  }



  /* ===========================
     TITRES & TEXTES
  =========================== */
  h1 { font-size: 1.65em; }
  h2 { font-size: 1.15em; }
  h3, h4 { font-size: 1.1em; }
  p { font-size: 1em; }

  /* ===========================
     GRILLES PRODUITS
  =========================== */
  .product-grid {
    justify-content: center;
    gap: 8px;
  }

  .product-card {
    flex: 0 1 calc(50% - 8px);
    padding: 0.2rem;
    margin-bottom: 0;
  }

  /* ===========================
     IMAGES PRODUITS (TAILLE UNIFORME)
  =========================== */
  .product-card img,
  .featured-product img {
    width: 75%;
    height: auto;
    object-fit: contain;
    background-color: #110502;
    border-radius: 8px;
    margin-bottom: 0.3rem;
  }

  /* ===========================
     TITRES PRODUITS
  =========================== */
  .product-card h3,
  .featured-product .product-name {
    font-size: 0.95em;
    margin: 0.15rem 0;
text-shadow:
  0 0 5px rgba(180, 0, 255, 0.6),
  0 0 10px rgba(180, 0, 255, 0.4),
  0 0 20px rgba(180, 0, 255, 0.3);
  }


  /* ===========================
     PRODUITS VEDETTES
  =========================== */
  .featured-products-container {
    gap: 6px;
  }

  .featured-product {
    width: 175px;
  }

  /* ===========================
     AVIS CLIENTS (2 MAX)
  =========================== */
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 95%;
  }

  .testimonial-card:nth-child(n+3) {
    display: none !important;
  }

  .testimonial-comment {
    font-size: 1em;
  }

  /* ===========================
     CTA
  =========================== */
  .cto-button {
    margin: 0.7rem 0;
    padding: 0.2rem 0.5rem;
    font-size: 1em;
  }

  .cto-button{
  width: 60%;
  padding: 8px 8px;
}


  /* ===========================
     HOVER DESACTIVE (MOBILE)
  =========================== */
  .product-card:hover,
  .featured-product:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: none;
  }


  .fantasy-list {
   width: 96%;
   font-size: 1em;
  }

}
