/**
* 2007-2026 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2026 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
:root {
  --dark: #101327;
  --blue: #0b132b;
  --orange: #f4b640;
  --white: #ffffff;
}

/* ===== SECTION ===== */
.concept-section {
  font-family: 'Montserrat', sans-serif;
}

/* ===== BANDEAU ===== */
.concept-banner {
  background: #101327;
  padding: 10px 8%;
}

.concept-banner-content {
  max-width: 1100px;
}

.concept-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244,182,64,0.15);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
}

.concept-banner h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 18px;
}

.concept-banner p {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 720px;
}

/* ===== ACTIONS ===== */
.concept-banner-actions {
  margin-top: 36px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* ===== BOUTON MANUSCRIT ===== */
.btn-manuscrit {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--blue);
  border-radius: 8px;
  padding: 16px 26px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-manuscrit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11,19,43,0.4);
}

.label {
  font-family: 'Shadows Into Light', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.25s ease;
}

.btn-manuscrit:hover .label {
  color: var(--orange);
}

.icon-slot {
  position: relative;
  width: 32px;
  height: 32px;
}

.icon-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Shadows Into Light', cursive;
  font-size: 26px;
  color: var(--white);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.check-box {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.check-box svg {
  width: 20px;
  height: 16px;
  stroke: var(--orange);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.btn-manuscrit:hover .icon-arrow {
  opacity: 0;
  transform: scale(0.6);
}

.btn-manuscrit:hover .check-box {
  opacity: 1;
  transform: scale(1);
}

.btn-manuscrit:hover .check-box svg {
  animation: drawCheck 0.6s ease forwards;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* ===== CONTENU ===== */
.concept-container {
  background: #ffffff;
  padding: 90px 8%;
}

.concept-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.concept-step {
  background: #f9f9fb;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16,19,39,0.12);
}

.concept-step img {
  max-width: 170px;
  margin-bottom: 24px;
}

.concept-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.concept-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 18px;
}
div#step4 img {
    max-width: 274px;
    margin-top: 30px;
}
div#step3 img {
    max-width: 200px;
}

/* ===== LIEN MANUSCRIT ===== */
.lien-manuscrit {
  font-family: 'Shadows Into Light', cursive;
  font-size: 20px;
  color: var(--blue);
  text-decoration: none;
  position: relative;
}

.lien-manuscrit::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.lien-manuscrit:hover {
  color: var(--orange);
}

.lien-manuscrit:hover::after {
  transform: scaleX(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .concept-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .concept-banner {
    text-align: center;
  }

  .concept-banner-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .concept-steps {
    grid-template-columns: 1fr;
  }

  .concept-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-manuscrit {
    justify-content: center;
  }
}
/*PARTIE INFO STAND*/
/* ===== SECTION STANDS ===== */
.stands-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== ZONE IMAGE FULL ===== */
.stands-image {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* ===== SLIDER FULL ZONE ===== */
.slider-wrapper {
  position: absolute;
  inset: 0;                 /* ← prend toute la zone */
  width: 100%;
  height: 100%;
  aspect-ratio: unset;      /* ← important */
  overflow: hidden;
  background: #000;
  user-select: none;
  touch-action: none;
}

/* Images */
.img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay avant */
.slider-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

/* Handle */
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: #101327;
  color: #f4b640;
  font-size: 18px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #f4b640;
  cursor: grab;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

/* ===== ZONE TEXTE ===== */
.stands-text {
  background: #101327;
  padding: 80px 70px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stands-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244,182,64,0.15);
  color: #f4b640;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}

.stands-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #f4b640;
  margin-bottom: 24px;
}

.stands-text p {
  color: white;
  font-size: 15.5px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 520px;
  margin-bottom: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .stands-section {
    grid-template-columns: 1fr;
  }

  .stands-image {
    min-height: 320px;
  }

  .stands-text {
    padding: 60px 8%;
    text-align: center;
  }

  .stands-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .stands-badge {
    margin-left: auto;
    margin-right: auto;
  }
}
/*TARIFS*/
:root {
  --dark: #101327;
  --orange: #f4b640;
}

/* ===== SECTION TARIF ===== */
.tarif-section {
  width: 100%;
  background: #f4b640;
  padding: 10px 10%;
  font-family: 'Montserrat', sans-serif;
}

/* CONTENU */
.tarif-content {
  max-width: 1920px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

/* TEXTE */
.tarif-text-zone {
  color: var(--dark);
}

.tarif-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(16,19,39,0.12);
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 26px;
}

.tarif-price {
  font-size: 84px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
}

.tarif-price span {
  font-size: 26px;
  font-weight: 600;
}

.tarif-text {
  color: black;
  font-size: 20px;
  line-height: 1.6;
  max-width: 720px;
}

/* IMAGE */
.tarif-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarif-image img {
  max-width: 35%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(16,19,39,0.25));
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .tarif-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tarif-text {
    margin-left: auto;
    margin-right: auto;
  }

  .tarif-image {
    margin-top: 40px;
  }

  .tarif-price {
    font-size: 64px;
  }
}
/*DEPOT VENTE*/
:root {
  --dark: #101327;
  --orange: #f4b640;
}

/* ===== SECTION DÉPÔT-VENTE ===== */
.depotvente-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== TEXTE ===== */
.depotvente-text {
  background: #101327;
  padding: 80px 70px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.depotvente-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244,182,64,0.15);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}

.depotvente-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
}

.depotvente-text p {
  color: white;
  font-size: 15.5px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 520px;
  margin-bottom: 18px;
}

/* ===== IMAGE FULL ===== */
.depotvente-image {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.depotvente-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .depotvente-section {
    grid-template-columns: 1fr;
  }

  .depotvente-image {
    min-height: 320px;
  }

  .depotvente-text {
    padding: 60px 8%;
    text-align: center;
  }

  .depotvente-text p {
	
    margin-left: auto;
    margin-right: auto;
  }

  .depotvente-text .btn-manuscrit {
    align-self: center;
  }
}
/* ===== SOUS-SECTION ÉTAPES DÉPÔT-VENTE ===== */
.depotvente-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 40px 0 50px;
}

.depotvente-step {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.depotvente-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

.depotvente-step img {
  max-width: 120px;
  margin-bottom: 16px;
}

.depotvente-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
}
/*Vide Maison*/
/* ===== SECTION VIDE-MAISON ===== */
.videmaison-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 890px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== IMAGE FULL ===== */
.videmaison-image {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.videmaison-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TEXTE ===== */
.videmaison-text {
  background: #101327;
  padding: 80px 70px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.videmaison-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244,182,64,0.15);
  color: #f4b640;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}

.videmaison-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #f4b640;
  margin-bottom: 24px;
}

.videmaison-text p {
  font-size: 15.5px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 520px;
  margin-bottom: 18px;
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .videmaison-section {
    grid-template-columns: 1fr;
  }

  .videmaison-image {
    min-height: 320px;
  }

  .videmaison-text {
    padding: 60px 8%;
    text-align: center;
  }

  .videmaison-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .videmaison-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1000px) {
  #videmaison {
    display: grid;
  }

  #videmaison .videmaison-text {
    order: 1;
  }

  #videmaison .videmaison-image {
    order: 2;
  }
}
