.hero {
    position: relative;
    background-image: url(../asset/image/processed-288B36A6-5E58-4109-B2EF-3DED0F03DCE2.jpeg);
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.55);
}
.container_1{
    height: 8px;
   margin-left: 320px;
   margin-right: 320px;
   margin-bottom: 15px;
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXTE GAUCHE */
.hero-text {
    max-width: 600px;
    text-align: left;
}

.hero-text h1 {
    font-size: 46px;
    margin-bottom: 25px;
    font-family: 'Amaranth', sans-serif;
}
.hero-text li{
    text-decoration: none;
    list-style: none;
}
.hero-text li a{
    font-size: 45px;
}
.hero-list {
    margin: 40px 0;
    padding-left: 0;
}

.hero-list li {
    margin-bottom: 14px;
    font-size: 18px;
    list-style: none;
}
.img_heros{
    border-radius: 8px;
    background-color: transparent;
}
 BOUTON GAUCHE */
.hero-text .btn-primary {
    display: inline-block;
    margin-top: 20px;
}

/* IMAGE DROITE */
.hero-image img {
    max-width: 480px;
    width: 100%;
    height: auto;
}
.model-no-interaction {
    pointer-events: none;
}
/* ===============================
   RESPONSIVE – TABLETTE
================================ */
@media (max-width: 1024px) {

    .hero {
        padding: 100px 0;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-image img {
        max-width: 400px;
    }
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {

    .hero {
        padding: 80px 0;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text li {
        font-size: 16px;
    }

    .hero-image img {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-text .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   RESPONSIVE – PETIT MOBILE (320px)
================================ */
@media (max-width: 480px) {

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-text li {
        font-size: 15px;
    }

    .hero-image img {
        max-width: 260px;
    }

    .hero-text .btn-primary {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* ROTATION 90° ALLER / RETOUR */
@keyframes spin3d {
    0% {
        transform: rotateY(0deg) rotateX(2deg);
    }
    50% {
        transform: rotateY(90deg) rotateX(-2deg);
    }
    100% {
        transform: rotateY(0deg) rotateX(2deg);
    }
}
model-viewer::part(default-progress-bar) {
    display: none;
}

/* MINI IMAGES HERO */
.hero-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-thumbs img {
    width: 80px;
    height: auto;
    border-radius: 8px;
    background-color: #fff;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.hero-thumbs img:hover {
    transform: scale(1.05);
}

.engagements {
    background-color: #ffffff;
    padding: 60px 0;
}

.engagements-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.engagement-item h2 {
    font-family: 'Amaranth', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.engagement-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    max-width: 320px;
    margin: auto;
}

/* Séparateurs verticaux */
.separator {
    width: 1px;
    height: 70px;
    background-color: #ccc;
}
.about-banner {
    background-color: var( --accent-4);
    padding: 80px 0;
}

.about-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXTE */
.about-text {
    max-width: 500px;
    color: var(--primary);
}

.about-text h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* BOUTON */
.btn-light {
    display: inline-block;
    background-color:var(--accent-2);
       color: var(--primary);
    padding: 14px 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.btn-light:hover {
    background-color: var(--accent-3);
}

/* IMAGE */
/* ===== SLIDER ABOUT ===== */
.about-image {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

}

.about-image img.active {
    opacity: 1;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.featured-products {
    padding: 100px 0;
    background-color: var(--secondary);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    font-family: 'Dream Avenue';
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* CARD */
.product-card {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* IMAGE */
.product-image {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
}
.featured-products .product-image .products-grid .product-card .product-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.featured-products .product-image .products-grid .product-card:hover{
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
}

/* BADGES */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.badge.soldout {
    background-color: #555;
}

.badge.promo {
    background-color: #e63946;
}

/* TEXT */
.product-card h3 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.product-image {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 16px;
    margin-bottom: 8px;
}

.old-price {
    text-decoration: line-through;
    margin-right: 8px;
    color: #999;
}

.promo-price {
    color: #e63946;
    font-weight: 700;
}

/* RATING */
.rating {
    font-size: 14px;
    color: #f39c12;
    margin-bottom: 20px;
}

.rating span {
    color: #555;
    font-size: 13px;
}

/* BUTTONS */
.btn {
    width: 100%;
    padding: 14px 0;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: auto;
}

.btn.primary {
    background-color: var(--primary);
    color: var(--secondary);
}
.btn-primary-1{
    background-color: var(--primary);
    color: var(--secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 145px;
    height: 35px;
    border: solid 1px transparent;
    border-radius: 2px;
}
.see-more {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-primary-1:hover{
      background-color: var(--secondary);
      color: var(--primary);
      border: solid 1px var(--primary);
}
.btn.disabled {
    background-color: var(--accent-2);
    color: var(--primary);
    cursor: not-allowed;
}
/* ===============================
   RESPONSIVE – TABLETTE
================================ */
@media (max-width: 1024px) {

    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-banner-content {
        gap: 40px;
    }
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {

    /* HERO */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-list {
        margin: 30px 0;
    }

    .hero-image img {
        max-width: 360px;
        margin-top: 30px;
    }

    /* ENGAGEMENTS */
    .engagements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .separator {
        display: none;
    }

    /* ABOUT */
    .about-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .about-image img {
        max-width: 360px;
        margin-top: 30px;
    }

    /* PRODUCTS */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 34px;
        margin-bottom: 50px;
    }
}

/* ===============================
   RESPONSIVE – PETIT MOBILE (320px)
================================ */
@media (max-width: 480px) {

    .hero {
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-list li {
        font-size: 16px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .product-image {
        padding: 20px;
        min-height: auto;
    }

    .product-card h3 {
        font-size: 13px;
    }

    .price {
        font-size: 15px;
    }

    .rating {
        font-size: 13px;
    }
}
/* ===== VIDEO BANNER ===== */
.video-banner {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55vh;      
}


/* Vidéo en fond */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* Overlay pour lisibilité */
.video-overlay {
    position: absolute;
    background: rgba(255, 255, 255, 0.45);
}

/* Contenu */
.video-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 40px 0;
    opacity: 0.9;
    width: 200px;
}
.video-content a{
background-color: var(--secondary);
color: var(--primary);
}
.video-content a:hover{
   background-color: var(--primary);
   color: var(--secondary);
}
.video-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.video-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--primary);
}
@media (max-width: 768px) {
    .video-banner {
        height: 60vh;
    }

    .video-content h2 {
        font-size: 32px;
    }

    .video-content p {
        font-size: 16px;
    }
}
/* ===============================
   RESPONSIVE – TABLETTE
================================ */
@media (max-width: 1024px) {
    .video-banner {
        height: 50vh;
        min-height: 300px;
    }

    .video-content h2 {
        font-size: 40px;
    }

    .video-content p {
        font-size: 17px;
    }
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {
    .video-banner {
        height: 45vh;
        min-height: 260px;
    }

    .video-content {
        padding: 30px 0;
        width: 100%;
    }

    .video-content h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .video-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/* ===============================
   RESPONSIVE – PETIT MOBILE (320px)
================================ */
@media (max-width: 480px) {
    .video-banner {
        height: 38vh;
        min-height: 220px;
    }

    .video-content {
        padding: 20px 10px;
        width: 100%;
    }

    .video-content h2 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .video-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .video-content .btn-primary {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
}
/* ===============================
   RESPONSIVE – TABLETTE
================================ */
@media (max-width: 1024px) {
    .container_1 {
        margin-left: 80px;
        margin-right: 80px;
        height: auto;
    }
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {
    .container_1 {
        margin-left: 20px;
        margin-right: 20px;
        height: auto;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-image {
        display: block;
    }

    .hero-image img {
        max-width: 320px;
        width: 100%;
        margin-top: 30px;
    }
}

/* ===============================
   RESPONSIVE – PETIT MOBILE (320px)
================================ */
@media (max-width: 480px) {
    .container_1 {
        margin-left: 10px;
        margin-right: 10px;
    }

    .hero-image img {
        max-width: 260px;
    }
}
.story-section {
    padding: 100px 0;
    background-color: var(--secondary);
    color: var(--primary);
}

.story-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 16px;
    color: var(--primary);
}

.story-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image img {
    width: 100%;
    max-width: 380px;
    display: block;
    margin: auto;
    border-radius: 6px;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primary);
}

.story-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--primary);
}

.story-bottom {
    max-width: 800px;
    margin: 60px auto;
    font-size: 15px;
    line-height: 1.8;
    color: var(--primary);
}

.story-highlight {
    margin-top: 20px;
    font-weight: 700;
    color: var(--accent-1);
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.story-card {
    text-align: center;
}

.story-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.story-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.story-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary);
}

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

    .story-cards {
        grid-template-columns: 1fr;
    }

    .story-card img {
        height: 220px;
    }
}
.botaneya-benefits {
  padding: 4rem 1rem;
  text-align: center;
  background-color: var(--accent-4);
}

.botaneya-benefits h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color:var(--accent-5s);
}

.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.benefit-bubble {
  width: 140px;
  height: 140px;
  background:var(--secondary);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.benefit-bubble:hover {
  transform: translateY(-8px);
}

.benefit-bubble i {
  font-size: 2rem;
  color: #6b8f71; /* vert naturel */
  margin-bottom: 0.6rem;
}

.benefit-bubble span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding: 0 0.5rem;
}
