/*
Theme Name: lesessentielleslab
Theme URI: https://example.com
Author: Kamar BENARBIA
Description: GUMMIES custom theme
Version: 1.1.0
Text Domain: lesessentielleslab
*/
* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
}

body {
  transition: background 1s ease-in-out;
}

body,
html {
  position: relative;
  background-color:#aedaf9 !important;
}
 
/* Texture overlay applied via pseudo-element */
body::before {
    content: '';
    position: fixed; /* fixed = covers entire viewport always */
    inset: 0;
    z-index: 0;
    pointer-events: none; /* clicks pass through */

    /* SVG noise grain — mimics canvas/fabric texture */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;

    /* Blend with background color like Photoshop "Placage de texture" */
    mix-blend-mode: multiply;
    opacity: 0.6; /* adjust 0.3 (subtle) → 0.8 (strong) */
}

/* Make sure all content sits above the texture */
body > * {
    position: relative;
    z-index: 1;
}
body,
.tab {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #888888 #ffffff !important;
}

*,
:focus-visible {
  outline: none !important;
}

button:focus {
  outline: none !important;
}

::-webkit-scrollbar-thumb {
  background: #000 !important;
}

*,
::after,
::before {
  box-sizing: border-box;
}
@font-face {
    font-family: "DIN Condensed";
    src: url("/wp-content/themes/your-theme/assets/fonts/din-condensed-bold.woff2") format("woff2"),
         url("/wp-content/themes/your-theme/assets/fonts/din-condensed-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* ========================================
   HERO GUMMIES SECTION
======================================== */

.hero-gummies-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.discover-collagene  .col-lg-8{
      justify-content: end;
    display: flex;
}
.hero-visual-wrapper {
  position: relative;
  width: 86%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Hero Image */
.hero-main-image {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: end;
}

.hero-main-image img {
  /* max-width: 82%; */

}

.hero-main-image img.discover-collagene__img {
  margin-top: 60px;
}

/* ========================================
   DECORATIVE GUMMIES (HERO SECTION)
======================================== */

.gummies-decor-hero {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.gummy-hero {
  position: absolute;
  will-change: transform;
}

.gummy-hero img {
  width: 65px;
  height: auto;
  transform: translateZ(0);
}

/* Gummy Positions Around Hero Bottle */
.gummy-hero-1 {
  top: 12%;
  left: -6%;
}

.gummy-hero-1 img {
  transform: rotate(348deg);
  width: 95px;
}

.gummy-hero-2 {
  top: 5%;
  left: 35%;
}

.gummy-hero-2 img {
  transform: rotate(180deg);
  width: 50px;
}

.gummy-hero-3 {
  top: -4%;
  right: 24%;
}

.gummy-hero-3 img {
  transform: rotate(277deg);
  width: 95px;
}

.gummy-hero-4 {
  top: 3%;
  right: 3%;
}

.gummy-hero-4 img {
  transform: rotate(328deg);
  width: 95px;
}

.gummy-hero-5 {
  top: 21%;
  left: 16%;
}

.gummy-hero-5 img {
  transform: rotate(4deg);
  width: 75px;
}

.gummy-hero-6 {
  top: 40%;
  right: 3%;
}

.gummy-hero-6 img {
  transform: rotate(170deg);
  width: 62px;
}

.gummy-hero-7 {
  bottom: 37%;
  left: 3%;
}

.gummy-hero-7 img {
  transform: rotate(42deg);
  width: 95px;
}

.gummy-hero-8 {
  top: 20%;
  right: 16%;
}

.gummy-hero-8 img {
  transform: rotate(347deg);
  width: 71px;
}

.gummy-hero-9 {
  top: 5%;
  left: 14%;
}

.gummy-hero-9 img {
  transform: rotate(305deg);
  width: 95px;
}

/* Smooth bounce animation */
@keyframes gummyBounceHero {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.gummy-hero.bounce {
  animation: gummyBounceHero 4s ease-in-out infinite;
}

/* Stagger animation delays */
.gummy-hero-1.bounce {
  animation-delay: 0s;
}

.gummy-hero-3.bounce {
  animation-delay: 0.5s;
}

.gummy-hero-5.bounce {
  animation-delay: 1s;
}

.gummy-hero-6.bounce {
  animation-delay: 1.5s;
}

.gummy-hero-8.bounce {
  animation-delay: 2s;
}




/* ========================================
   GUMMIES PACKS SECTION
======================================== */

.gummies-packs-section {
  position: relative;
  overflow: hidden;
}

/* Packs Row */
.packs-row {
  gap: 40px;
}

/* Pack Card */
.pack-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.pack-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, ease-in-out 0.3s;
}

/* Pack Image */
.pack-image {
  margin: 0;
  width: 100%;
  max-width: 420px;
}

/* Pack J'adore - Offset positioning */
.pack-291 img {
  margin-top: -33px !important;
}

.pack-image img {
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
  
}

.pack-card:hover .pack-image img {
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

/* Pack Content */
.pack-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 45px;
}

.pack-title {
  color: #2d2d2d;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400 !important;
  font-size: 24px;

}

.pack-subtitle {
  font-size: 23px;
  color: #2d2d2d;
  margin: 0;
  font-weight: 400;
}

.pack-content .magnetic-button {
  margin-top: 20px;
}

/* Footer Text */
.packs-footer-text {
  font-size: 1.1rem;
  color: #2d2d2d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.cree-pack-title {
  max-width: 75%;
}

/* Tablet */
@media (max-width: 991px) {
  .gummies-packs-section .title-h2 {
    font-size: 2rem;
    padding: 0 20px;
  }

  .gummies-packs-section .sub-title-h2 {
    font-size: 20px;
    padding: 0 20px;
  }

  .packs-row {
    gap: 0px;
  }

  .cree-pack-title {
    max-width: 78%;
  }

  .pack-card {
    padding: 25px;
  }

  .pack-title {
    font-size: 1.6rem;
  }

  .pack-subtitle {
    font-size: 1.1rem;
  }

  .packs-footer-text {
    font-size: 1rem;
    padding: 0 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .gummies-packs-section .title-h2 {
    font-size: 1.6rem;
  }

  .gummies-packs-section .sub-title-h2 {
    font-size: 1rem;
  }

  .pack-card {
    padding: 20px;
  }

  .pack-title {
    font-size: 1.4rem;
  }

  .pack-subtitle {
    font-size: 1rem;
  }

  .pack-cta-btn {
    font-size: 1rem;
    padding: 10px 30px;
  }

  .packs-footer-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .gummies-packs-section .title-h2 {
    font-size: 1.4rem;
  }

  .pack-image {
    max-width: 300px;
  }
}

/* ========================================
   SHOP GUMMIES SECTION - OPTIMIZED
   ======================================== */

.archive .shop-gummies-section {
  padding: 180px 0 40px;
  position: relative;
  overflow: hidden;
}

.content-title-shop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
 

.content-title-shop p {
  max-width: 77%;
}

.gummies-products-grid {
  gap: 5px;
  padding: 0px 110px;
}

.gummies-products-grid .col-xl-2 {
  padding: 0 !important;
}

.gummies-product-card {
  position: relative;
  display: block;
  text-align: center;
}

.product-card-link {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
  transition: transform 0.3s ease;
  will-change: transform;
}

.product-card-link:hover {
  transform: translateY(-10px);
  text-decoration: none;
}

.product-card-bg {
  inset: 0;
  z-index: 1;
  border-radius: 20px;
  margin: 0;
  overflow: visible;
}

.bg-card-img {
  contain-intrinsic-size: auto !important;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.product-card-link:hover .bg-card-img {
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

.product-card-content {
  position: absolute;
  bottom: 2%;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}

.product-card-title {
  position: relative;
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #fff; 
  letter-spacing: 0.05em;
}

.product-tag-label {
display: inline-block;
    font-size: 22px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 300;
    letter-spacing: 0.05em;
    align-self: center;
    position: absolute;
    top: -24px;
    left: 38%;
}

.product-card-subtitle {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500; 
  letter-spacing: 0.03em;
}

.product-card-price {
  margin: 8px 0 0;
}

.price-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff; 
}

.shop-footer-text {
  font-size: 1.1rem;
  color: #2d2d2d;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* VARIATIONS SECTION */
.variation-card {
  height: auto;
}

.variation-link {
  padding: 0 20px;
}

.variation-image-wrapper {
  margin: 0  ;
  position: relative;
  overflow: visible;
  /* Changed from hidden to visible */
  border-radius: 0;
  /* Removed border-radius for full image display */
}

.variation-img {
  width: 100%;
  height: auto;
  display: block; 
  transition: filter 0.3s ease;
  object-fit: contain;
  /* Changed from cover to contain */
}

.variation-link:hover .variation-img {
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

.variation-content {
  text-align: center;
  padding: 0px 0 20px;
}

.variation-name {
font-weight: 400;
    font-size: 20px;
  color: #2d2d2d;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (min-width: 1600px) {
  .gummies-product-card {
    max-width: 80% !important;
  }

}

@media (max-width: 1600px) {
  .benefits-carousel-section .benefits-slide {
    max-width: 95% !important;
  }

  .benefits-carousel-section .benefts-products-carousel {
    padding: 40px 150px !important;
  }

}

@media (min-width: 1200px) {
  .gummies-products-grid {
    gap: 30px;
  }

  .section-insta-gallery .description-title {
    max-width: 72%;
  }

  .benefits-carousel .owl-nav button.owl-next {
    right: -70px;
  }

  .benefits-carousel .owl-nav button.owl-prev {
    left: -70px;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {

  .product-card-title {
    font-size: 1.4rem;
  }

  .variation-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .shop-gummies-section .title-h2 {
    font-size: 2rem;
    padding: 0 20px;
  }

  .shop-gummies-section .sub-title-h2 {
    font-size: 20px;
    padding: 0 20px;
  }

  .gummies-products-grid {
    gap: 20px;
  }

  .gummies-products-grid {
    gap: 30px;
  }

  .product-column {
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .shop-gummies-section .title-h2 {
    font-size: 1.6rem;
  }


  .product-tag-label {
    font-size: 0.7rem;
    padding: 3px 10px;
  }

  .product-card-title {
    font-size: 1.2rem;
  }

  .product-card-subtitle {
    font-size: 0.85rem;
  }

  .price-amount {
    font-size: 1.3rem;
  }

  .shop-footer-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .variation-link {
    padding: 15px;
  }

  .variation-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .shop-gummies-section .title-h2 {
    font-size: 1.4rem;
  }



  .variation-name {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .product-card-link,
  .bg-card-img,
  .variation-img,
  .magnetic-button {
    transition: none;
  }
}

/* ========================================
   PACK BUILDER PAGE STYLES.pack-builder-widget
   ======================================== */

.pack-builder-section {
  position: relative;
  padding-top: 200px !important;
  min-height: 100vh;
}

/* Page Header */
.pack-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2d2d2d;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.pack-subtitle {
  font-size: 1.3rem;
  color: #2d2d2d;
  font-weight: 400;
  margin: 0;
}

/* Products Grid */
.pack-products-grid {
  gap: 50px;
}

.pack-products-grid .col-xl-3,
.pack-products-grid .col-md-3 {
  padding: 0 !important;
}

/* Product Card with Selector */
.pack-product-card {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pack-product-card.has-selection {
  opacity: 0.8;
}

/* Selection Badge */
.selection-badge {
  position: absolute;
  top: 34px;
  right: 5px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #000;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Add Button */
.add-to-pack-btn {
  margin-top: 15px;
}

/* Pack Builder Widget */
.pack-builder-widget {
  background: #eae2df;
  border-radius: 70px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 178px;
}

.pack-widget-title {
  font-size: 24px;
  font-weight: 400;
  color: #2d2d2d;
  margin-bottom: 20px;
  text-align: center;
}

/* Selection Slots */
.pack-selections {
  display: flex;
  gap: 44px;
  margin-bottom: 30px;
  padding: 0 30px;
}

.pack-choice-slot {
  flex: 1;
}

.pack-choice-empty {
  background: #acd7f6;
  border-radius: 15px;
  padding: 60px 20px;
  text-align: center;
  border: 2px dashed #2d2d2d;
}

.choice-label {
  font-size: 1rem;
  font-weight: 600;
  color: #2d2d2d;
  text-transform: lowercase;
}

.pack-choice-filled {
  position: relative;
  background: #acd7f6;
  border-radius: 15px;
  padding: 10px;
  border: 2px solid #2d2d2d;
}

.choice-image-wrapper {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.choice-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.choice-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d2d2d;
  text-align: center;
  margin: 0;
  padding: 0 5px;
}

.remove-choice-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2d2d2d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-choice-btn:hover {
  background: #ff4444;
  transform: scale(1.1);
}

/* Quantity Selector */
.pack-quantity-selector {
  display: flex !important;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 17px;
  font-weight: 500;
  padding: 2px 0;
  text-align: center;
  border-radius: 30px;
  border: solid 2px #000;
  color: #000 !important;
  background-color: #fff;
}

.pack-quantity-selector:hover .qty-input,
.pack-quantity-selector:hover .qty-btn {
  color: #fff;
}

.qty-btn {
  color: #2d2d2d;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  background: transparent !important;
  border: none !important;
  text-align: center !important;
}

.qty-btn:hover {
  color: #000 !important;
  background: #fff !important;
  border-radius: 50%;
  font-weight: 700;
  transition: 0.2s all ease-in-out;
  transform: scale(1.2);
}

.qty-input {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  width: 36px;
  height: 36px;
  background: transparent !important;
  border: none !important;
  text-align: center !important;
}

/* Price Display */
.pack-price-display {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.pack-original-price,
.pack-discount {
  font-size: 1rem;
  color: #666;
  margin-bottom: 8px;
}

.pack-final-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid #ddd;
}

/* Add to Cart Button */
.pack-add-to-cart-btn {
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;

  font-size: 17px;
  font-weight: 500;
  padding: 7px 0px;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  border: solid 2px #000;
  display: block;
  margin: auto;
  margin-bottom: 18px;
  height: 45px;
  color: #000 !important;
}

.pack-add-to-cart-btn:hover:not(:disabled) {
  background: #000;
  transform: translateY(-2px);
}

.pack-add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Info Message */
.pack-info-message {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 15px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .pack-builder-widget {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .pack-main-title {
    font-size: 1.6rem;
  }

  .pack-subtitle {
    font-size: 1.1rem;
  }

    .pack-products-grid {
        gap: 15px;
        justify-content: center !important;
    }
  .pack-builder-widget {
    padding: 20px;
  }

  .pack-widget-title {
    font-size: 1.2rem;
  }

  .pack-selections {
    gap: 15px;
  }

  .choice-image-wrapper {
    height: 100px;
  }
}

@media (max-width: 575px) {
  .pack-main-title {
    font-size: 1.4rem;
  }

  .pack-subtitle {
    font-size: 1rem;
  }

  .pack-choice-empty {
    padding: 40px 15px;
  }

  .choice-label {
    font-size: 0.9rem;
  }

  .choice-name {
    font-size: 0.8rem;
  }
}

/* Pack J'adore specific styles */
.pack-selections-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
  margin-bottom: 30px;
  padding: 0 40px;
}

.pack-choice-slot-small .pack-choice-empty {
  padding: 40px 15px;
}

.pack-choice-slot-small .choice-image-wrapper {
  height: 80px;
}

.pack-choice-slot-small .choice-name {
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  .pack-selections-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pack-choice-slot-small .pack-choice-empty {
    padding: 30px 10px;
  }

  .pack-choice-slot-small .choice-image-wrapper {
    height: 60px;
  }
}

/* ========================================
DECORATIVE GUMMIES (DIFFERENCE SECTION)
Scoped to avoid conflict with reviews
======================================== */

.decoration-image {
  position: relative;
}

.gummies-decor-diff {
  width: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.gummy-diff {
  position: absolute;
  will-change: transform;
}

.gummy-diff img {
  width: 65px;
  height: auto;
}

/* Positions */

.gummy-decor-1 {
  top: -74px;
  left: 18%;
}

.gummy-decor-1 img {
  transform: rotate(208deg);
}

.gummy-decor-2 {
  top: 20px;
  right: 15%;
}

.gummy-decor-3 {
  top: -26%;
  left: 6%;
}

.gummy-decor-3 img {
  transform: rotate(181deg) !important;
  width: 90px;
}

.gummy-decor-4 {
  top: -22%;
  right: 3%;
}

.gummy-decor-4 img {
  transform: rotate(151deg) !important;
  width: 78px;
}

.gummy-decor-5 {
  bottom: 5%;
  left: 8%;
}

.gummy-decor-5 img {
  width: 140px;
  transform: rotate(330deg) !important;
}

.gummy-decor-6 {
  top: -4%;
  left: 44%;
}

.gummy-decor-6 img {
  width: 157px;
  transform: rotate(170deg) !important;
}

.gummy-decor-7 {
  bottom: 7%;
  left: 46%;
}

.gummy-decor-7 img {
  transform: rotate(126deg) !important;
  width: 130px;
}

/* Smooth bounce animation */

@keyframes gummyBounceDiff {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.bounce {
  animation: gummyBounceDiff 4s ease-in-out infinite;
}

/* Performance */

.gummy-diff img {
  transform: translateZ(0);
}

/* Mobile optimization */

@media (max-width:991px) {

  .gummy-diff img {
    width: 45px;
  }

  .gummy-decor-2,
  .gummy-decor-4 {
    display: none;
  }

}

/* =====================================
GUMMIES DECORATION LAYER
===================================== */

.reviews-section {
  position: relative;
  overflow: hidden;
}
.reviews-sectionafter {

}
.gummies-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.gummy {
  position: absolute;
  will-change: transform;
}

.gummy img {
  width: 140px;
  height: auto;
  
}

/* =====================================
SMOOTH BOUNCE ANIMATION
===================================== */

@keyframes gummyBounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

.gummy-bounce {
  animation: gummyBounce 4s ease-in-out infinite;
}

/* =====================================
POSITIONS (based on screenshot)
===================================== */

.gummy-1 {
  top: 50px;
  left: 87px;
  max-width: 85px;
}

.gummy-1 img {
  max-width: 85px;
}

.gummy-2 {
  top: 110px;
  left: 25%;
}

.gummy-2 img {
  max-width: 90px;
}

.gummy-3 {
  top: 106px;
  right: 42%;
}

.gummy-3 img {
  transform: rotate(308deg) !important;
}

.gummy-4 {
  top: 99px;
  right: 14%;
}

.gummy-4 img {
  max-width: 108px;

}

.gummy-5 {
  bottom: 158px;
  left: 20px;
  transform: rotate(115deg) !important;
}

.gummy-5 img {
  max-width: 170px !important;
  width: fit-content;
}

.gummy-6 {
  bottom: 107px;
  left: 18%;
}

.gummy-6 img {
  max-width: 130px;
  transform: rotate(132deg) !important;
}

.gummy-7 {
  bottom: 30px;
  right: 25%;
}

.gummy-7 img {
  transform: rotate(150deg) !important;
}

.gummy-8 {
  top: 84px;
  right: 27%;
}

.gummy-8 img {
  max-width: 80px;
  transform: rotate(211deg);
}

/* Apply animation to selected gummies */

.gummy-1,
.gummy-3,
.gummy-6,
.gummy-7 {
  animation: gummyBounce 5s ease-in-out infinite;
}

.gummy-3 {
  animation-delay: 1s;
}

.gummy-6 {
  animation-delay: 2s;
}

.gummy-7 {
  animation-delay: 3s;
}

/* =====================================
PERFORMANCE OPTIMIZATION
===================================== */

.gummy img {
  transform: translateZ(0);
}

/* =====================================
MOBILE OPTIMIZATION
===================================== */

@media (max-width: 991px) {

  .gummy img {
    width: 45px;
  }

  .gummy-2,
  .gummy-4,
  .gummy-6 {
    display: none;
  }

}

.product-benefits-pd-header h3 {
  font-size: 15px;
  font-weight: 400;
  color: #2d2d2d;
}

.product-benefits-pd-header .benefits-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.product-benefits-pd-header .benefit-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.product-benefits-pd-header .benefits-list-singel-pr {
  padding-top: 25px !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-benefits-pd-header .benefits-list-singel-pr li {
  padding: 0;
  font-size: 15px;
  color: #2d2d2d;
  line-height: 1.5;
}

.single-product .gummies-product-box {
  padding: 60px 44px;
  border-radius: 90px;
  border: solid 2px;
}

.single-product.product-id-299 .gummies-product-box {
  background-color: #ffc0dd;
}

.single-product.product-id-98 .gummies-product-box {
  background-color: #eae2df;
}

body.single-product.product-id-98 {
  background-color: #ffc0dd !important;
}

body.single-product.product-id-206 {
  background-color: #ecc9ff !important;
}
body.single-product.product-id-295 {
  background-color: #fdcdb4 !important;
}

.single-product.product-id-206 .gummies-product-box {
  background-color: #3f1160;
}
.single-product.product-id-825 .gummies-product-box {
  background-color: #e9e1de;
}

.single-product.product-id-206 h1,
.single-product.product-id-206 .product-benefits-pd-header h3,
.single-product.product-id-206 .product-benefits-pd-header .benefits-list-singel-pr li {
  color: #fff !important;
}

.product-header h1 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 400 !important;
  line-height: 1.2;
}


.single-product.product-id-299 .tab-btn.is-active,
.single-product.product-id-299 .tab-btn:focus,
.single-product.product-id-299 .tab-btn:hover {
  background-color: #86c6f2;
}

.single-product.product-id-299 .tab-btn {
  background: #a5d5f5;
}
.single-product.product-id-295 .tab-btn.is-active,
.single-product.product-id-295 .tab-btn:focus,
.single-product.product-id-295 .tab-btn:hover {
  background-color: #ff7070;
}

.single-product.product-id-295 .tab-btn {
  background: #ff7070a6;
}


/* product tabs colors */

.tab-btn {
  width: 30%;
  position: relative;
  border: 2px solid #00000096;
  border-radius: 45px;
  padding: 12px;
  cursor: pointer;
  min-height: 170px;
  overflow: hidden;
}


.single-product.product-id-98 .tab-btn {
  background: #ffc0dd80;
}

.single-product.product-id-206 .tab-btn {
  background: #ecc9ff99;
}

.single-product.product-id-233 .tab-btn {
  background: #c8ebeda1;
}

.single-product.product-id-206 .tab-btn {
  background: #ffd500ce;
}
.single-product.product-id-825 .tab-btn {
  background: #ff9d6ccc;
}

.single-product.product-id-98 .tab-btn.is-active,
.single-product.product-id-98 .tab-btn:focus,
.single-product.product-id-98 .tab-btn:hover {
  background-color: #ffc0dd;
}

.single-product.product-id-206 .tab-btn.is-active,
.single-product.product-id-206 .tab-btn:focus,
.single-product.product-id-206 .tab-btn:hover {
  background-color: #ecc9ff;
}

.single-product.product-id-233 .tab-btn.is-active,
.single-product.product-id-233 .tab-btn:focus,
.single-product.product-id-233 .tab-btn:hover {
  background-color: #c8ebed;
}

.single-product.product-id-206 .tab-btn.is-active,
.single-product.product-id-206 .tab-btn:focus,
.single-product.product-id-206 .tab-btn:hover {
  background-color: #ffd300;
}

.single-product.product-id-825 .tab-btn.is-active,
.single-product.product-id-825 .tab-btn:focus,
.single-product.product-id-825 .tab-btn:hover {
  background-color: #ff9d6c;
}
.tab-btn.is-active,
.tab-btn:focus,
.tab-btn:hover {
  border: 2px solid #000 !important;
}

.tab-btn:hover img {
  animation: scale-up-center 2s linear infinite;
}

.tab-btn img {
  width: auto;
  height: auto;
  display: block;
  margin: 17px auto 6px auto;
  max-height: 84px;
}

.product-id-98 .tab-btn img {
  filter: drop-shadow(0 0 0.15rem crimson);
}

.product-id-206 .tab-btn img {
  filter: drop-shadow(0 0 0.15rem #bf49ff);
}

.tab-label {
  display: block;
  font-size: 13px;
  text-align: center;
  text-transform: capitalize;
}

.promo {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  /* transform: translateX(-50%); */
  background: #fff;
  color: #000;
  font-size: 18px;
  padding: 2px 25px;
  /* border-radius: 20px; */
  z-index: 7;
  border: 1px solid #000;
  overflow: hidden;
}

.single-product section.gummies-gallery .quantity,
.single-product section.gummies-gallery .add-to-cart-btn.single_add_to_cart_button {
  background-color: #fff !important;
  max-width:74%;
}

/* ========================================
   PRODUCT TABS SECTION
======================================== */

.product-tabs-section {
  padding: 80px 0 40px;
}

.product-tabs-section .product-tabs-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Tab Headers */
.product-tabs-section .tabs-headers {
  display: flex;
  gap: 15px;
  padding: 20px;
  flex-wrap: wrap;
}

.product-tabs-section .tab-header {
  flex: 1;
  min-width: 200px;
  padding: 0px 18px;
  border: 2px solid #2d2d2d;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.single-product.product-id-299 .product-tabs-section .tab-header {
  color: #131313;
}

.single-product.product-id-299 .product-tabs-section .tab-header {
  background: #ffb3c9d6;
  transform: translateY(-2px);
}

.single-product.product-id-299 .product-tabs-section .tab-header.active {
  background: #ff9db8;
}

.single-product.product-id-98 .product-tabs-section .tab-header {
  color: #fff
}

.single-product.product-id-98 .product-tabs-section .tab-header {
  background: #e6007f77;
  transform: translateY(-2px);
}

.single-product.product-id-98 .product-tabs-section .tab-header.active {
  background: #e6007e;
}

.single-product.product-id-206 .product-tabs-section .tab-header {
  color: #fff
}

.single-product.product-id-206 .product-tabs-section .tab-header {
  background: #3f1160bf;
  transform: translateY(-2px);
}

.single-product.product-id-206 .product-tabs-section .tab-header.active {
  background: #3f1160;
}

.single-product.product-id-825 .product-tabs-section .tab-header {
  background: #ff9d6ccc;
  transform: translateY(-2px);
}

.single-product.product-id-825 .product-tabs-section .tab-header.active {
  background: #ff9d6c;
}

.single-product.product-id-295 .product-tabs-section .tab-header {
  background: #ff7070d7;
  transform: translateY(-2px);
}

.single-product.product-id-295 .product-tabs-section .tab-header.active {
  background: #ff7070;
}


.product-tabs-section .tab-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.product-tabs-section .tab-header.active .tab-arrow {
  transform: rotate(180deg);
}

/* Tab Content */
.product-tabs-section .tabs-content {
  min-height: 200px;
}

.product-tabs-section .tab-pane {
  display: none;
  padding: 30px;
}

.product-tabs-section .tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-tabs-section .tab-content-inner {
  color: #2d2d2d;
}

/* Dosage Groups */
.product-tabs-section .dosage-group {
  margin-bottom: 25px;
}

.product-tabs-section .dosage-group:last-child {
  margin-bottom: 0;
}

.product-tabs-section .dosage-group h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.product-tabs-section .dosage-group p {
  font-size: 15px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0;
}

/* Composition Tables */
.composition-section {
  margin-bottom: 30px;
}

.composition-section:last-child {
  margin-bottom: 0;
}

.composition-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.composition-table {
  width: 74%;
  border-collapse: collapse;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  font-size: 15px;
}

.composition-table th {
  padding: 5px 13px;
  text-align: left;
  font-weight: 600;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}

.composition-table td {
  padding: 5px 15px;
  border: 1px solid #2d2d2d;
  color: #2d2d2d;
}


.vnr-note {
  font-size: 0.85rem;
  font-style: italic;
  color: #2d2d2d;
  margin-top: 5px;
}

.ingredients-list {
  width: 80%;
}

.ingredients-list p {
  font-size: 15px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .tabs-headers {
    flex-direction: column;
    gap: 10px;
  }

  .tab-header {
    min-width: 100%;
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  .tab-pane {
    padding: 20px 15px;
  }

  .composition-table {
    font-size: 0.85rem;
  }

  .composition-table th,
  .composition-table td {
    padding: 8px 10px;
  }
}

@media (max-width: 575px) {

  .composition-table th:last-child,
  .composition-table td:last-child {
    display: none;
  }
}


/* ========================================
   PRODUCT DESCRIPTION SECTION
======================================== */

.product-description-section {
  padding: 60px 0;
}

.description-content {
  text-align: left;
}

.description-title {
      font-family: "DIN Condensed", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom:  0px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.description-text {
  color: #5d4e3c;
}

.description-text p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #131313;
  font-weight: 400
}

.description-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .product-description-section {
    padding: 50px 0;
  }

  .description-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .description-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .product-description-section {
    padding: 40px 20px;
  }

  .description-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .description-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }
}

@media (max-width: 575px) {
  .product-description-section {
    padding: 30px 15px;
  }

  .description-title {
    font-size: 1.3rem;
  }

  .description-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.gummies-features-section .gummies-feature-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.gummies-features-section p.gummies-feature-label {
  width: 79%;
  font-size: 15px;
  font-weight: 400;
}

.gummies-features-grid>div:nth-child(1) .gummies-feature-label {
  width: initial;
}

.gummies-benefits-section {
  padding: 120px 0;
}

.gummies-benefits-section .gummies-benefits {
  padding: 120px 0;
}

.gummies-benefits-section .gummies-benefits-hero {
  margin-bottom: 30px;
}

.gummies-benefits-section .benefits-subtitle {
  margin: 15px 0 30px;
}

.gummies-benefits-section .benefits-intro {
  line-height: 1.6;
}


.gummies-benefits-section .gummies-benefits-image {
  max-width: 520px;
}

.gummies-benefits-section p.benefits-intro {
  font-size: 15px;
}

.benefits-carousel-section .benefts-products-carousel {
  padding: 40px 210px;
}

.benefits-carousel-section .benefits-slide {
  max-width: 80%;
}

.benefits-carousel-section .owl-carousel .owl-item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pack Limit Modal */
#pack-limit-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-modal-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 2px solid #000;
  padding: 40px 50px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalPop 0.25s ease;
}

@keyframes modalPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pack-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #2d2d2d;
  line-height: 1;
  transition: transform 0.2s ease;
}

.pack-modal-close:hover {
  transform: scale(1.2);
}

.pack-modal-message {
  font-size: 1rem;
  color: #2d2d2d;
  line-height: 1.6;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Prevent body scroll when modal open */
body.modal-open {
  overflow: hidden;
}

section.sommeil-usage-section {
  padding: 115px 0;
}

figure.sommeil-usage-figure {
  text-align: center;
}

/* Owl Carousel Navigation for Benefits */
.benefits-carousel .owl-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  pointer-events: none;
}

.benefits-carousel .owl-nav button {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.benefits-carousel .owl-nav button:hover {
  background: #3f1160 !important;
  transform: scale(1.1);
}

.benefits-carousel .owl-nav button:hover svg {
  color: #fff !important;
}

.benefits-carousel .owl-nav button svg {
  color: #333;
}

/* Owl Carousel Dots */
.benefits-carousel .owl-dots {
  margin-top: 40px;
  text-align: center;
}

.benefits-carousel .owl-dot {
  display: inline-block;
  margin: 0 6px;
}


section.section-insta-gallery {
  position: relative;
}

section.section-insta-gallery:before {
  position: absolute;
  content: "";
  background-image: url(/lesessentielleslab/wp-content/uploads/2025/12/FOOTER-scaled.png);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}


.section-insta-gallery .instagram-gallery-item__wrap {
  border-radius: 50px !important;
  max-width: 290px;
  border: solid 2px #000;
  border-radius: 40px;
  height: 100%;
  object-fit: cover;
}

.section-insta-gallery a.instagram-gallery__button.instagram-gallery__button--follow {
  font-size: 20px !important;
  font-weight: 700 !important;
  padding: 15px 25px !important;
  color: #000 !important;
  background-color: #fff !important;
  border: solid 2px #000 !important;
  border-radius: 28px !important;
}

.section-insta-gallery .instagram-gallery__actions {
  margin-top: 100px;
  position: relative;
}

/* ========================================
   SITE FOOTER - SIMPLIFIED
======================================== */

.site-footer {
  background: linear-gradient(135deg, #f5d5e8 0%, #e8c5f0 100%);
  padding: 10px 20px;
  border-top: 1px solid #000;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

/* Logo */
.footer-logo {
  margin: 0;
  max-width: 50%;
}

.footer-logo-img {
  width: 50%;
  height: auto;
}

/* Brand Text */
.footer-brand-text {
  text-align: center;
}

.footer-brand-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #2d2d2d;
  margin: 0 0 5px 0;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.footer-brand-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #2d2d2d;
  margin: 0;
  text-transform: lowercase;
}

/* Legal Navigation */
.footer-legal-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.footer-legal-link {
  font-size: 10px;
  color: #2d2d2d;
  text-decoration: underline;
  font-style: italic;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.footer-legal-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}


/* ========================================
   GUMMIES DIFFERENCE SECTION
======================================== */

.gummies-difference-section {
  position: relative;
  overflow: hidden;
}
/* 
.gummes-diffenrence-title {
  max-width: 50%;
} */

/* Comparison Row */
.comparison-row {
  position: relative;
  z-index: 2;
  gap: 40px;
}

/* Comparison Card */
.comparison-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comparison-icon {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.exclude-card .comparison-icon {
  width: 115px;
  height: 115px;
}

.include-card .comparison-icon {
  width: 150px;
  height: 150px;
  margin-top: -42px;
  margin-bottom: 2px;
}

.comparison-icon img {
  max-width: 100%;
  height: auto;
}

.comparison-text {
  margin-top: -20px;
  background: #eae2df;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 10px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-text p {
  font-size: 20px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  font-weight: 400;
}

/* Strikethrough for excluded items */
.strikethrough {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

/* Bottom Decoration */
.decoration-image {
  margin: 0;
  text-align: center;
}

.decoration-image img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  
}

.reviews-section {
  padding: 0 0 50px;
}

h2.shop-title-carousel {
  max-width: 80%;
}

.reviews-carousel .owl-stage {
  display: block;
}

.reviews-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.review-box {
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #ffd4f2;
  border: 2px solid #000;
  border-radius: 58px;
  max-width: 360px;
  width: 100%;
  height: auto;
  min-height: 330px;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-rating .stars {
  font-size: 20px;
  color: #ffc107;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgb(0 0 0 / 69%);
}

.review-author {
  font-size: 20px;
  margin: 0 0 15px 0;
  font-weight: 400;
  color: #333;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
}

.review-author span {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: #333;
  gap: 7px;
}

/* Preview text (truncated with ellipsis) */
.review-text-preview {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Full text (shown when expanded) */
.review-text-full {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 15px 0;
  animation: fadeIn 0.3s ease-in-out;
  display: none;
}

.rating-stars {
  font-size: 24px;
  color: #ffc107;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 16px;
  font-weight: 600;
  color: #666;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Apply fade to owl items */
.owl-item.fadeOut {
  animation: fadeOut 0.8s ease-out forwards;
}

.owl-item.fadeIn {
  animation: fadeIn 0.8s ease-in forwards;
}

/* Action buttons container */
.review-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* Read More Button */
.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
  transition: opacity 0.2s ease;
  text-align: left;
  margin-top: auto;
  display: inline-block;
}

.read-more-btn:hover {
  opacity: 0.7;
}

.read-more-btn:active {
  opacity: 0.9;
}

.read-more-btn:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Read Less Button */
.read-less-btn {
  transition: all 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
  text-align: left;
  margin-top: auto;
  display: none;
}

.read-less-btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.read-more-btn:hover,
.read-less-btn:hover {
  color: #378fcc;
  text-decoration: underline;
}

.read-less-btn:active {
  opacity: 0.9;
}

.read-less-btn:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Hide preview when expanded */
.read-more-btn[aria-expanded="true"]~.review-text-preview {
  display: none;
}

/* Hide button when expanded */
.read-more-btn[aria-expanded="true"] .read-more-text::after {
  content: " LIRE MOINS …";
}

.read-more-btn[aria-expanded="true"] .read-more-text {
  display: none;
}

/* SVG Arrow Styling */
.reviews-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  /* background: rgba(255, 255, 255, 0.9) !important; */
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.reviews-carousel .owl-nav button:hover {
  background: #ffd4f2 !important;
  transform: scale(1.1);
}

.reviews-carousel .owl-nav button svg {
  color: #333;
}

/* Arrows */
.gummies-carousel-section .owl-nav button,
.products-carousel .owl-nav button,
.reviews-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: #fff !important; */
  /* border: 2px solid #000 !important; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.products-carousel .owl-nav button:hover,
.reviews-carousel .owl-nav button:hover {
  background: #f0f0f0 !important;
}

.reviews-carousel .owl-nav .owl-prev {
  left: -60px;
}

.reviews-carousel .owl-nav .owl-next {
  right: -60px;
}

/* Dots */
.reviews-carousel .owl-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}


/* CTA */
.review-cta {
  margin-top: 40px;
}

.review-cta a {
  font-size: 19px;
  padding: 8px 36px !important;
}

.review-cta a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

img.verified-icon {
  max-width: 24px !important;
  height: auto;
}

.review-date {
  display: block;
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}

.review-content {
  line-height: 1.6;
}

.title-h2 {
  text-transform: uppercase;
  font-weight: 400 !important;
  font-size: 37px;
}

.sub-title-h2 {
  font-weight: 400;
  font-size: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .gummy-hero.bounce {
    animation: none;
  }
}

.page-id-884 .gummies-packs-section {
    padding-top: 250px !important;
}
    .reviews-section{
    position:relative;
}

.reviews-decor-img{
  position: absolute;
    top: 34px;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.reviews-decor-photo{ 
    height:auto;
} 
@media (max-width: 1440px) {

  .product-tabs {
    gap: 0px;
  }

  /* .product-column {
    padding-right: 80px;
  } */

  .single-product .gummies-product-box {
    padding: 50px 23px;
  }

  .tab-btn {
    padding: 5px;
  }

  .product-card-title {
    font-size: 1.5rem;
  }

  .product-card-subtitle {
    font-size: 0.8rem;
  }

  .product-card-price {
    margin: 0;
  }

  .price-amount {
    font-size: 1.4rem;
  }

}

@media (max-width: 1200px) {
  .product-column {
    padding-right: 10px;
  }

  .single-product .gummies-product-box {
    padding: 60px 15px;
  }

  .product-tabs-section .tab-header {
    font-size: 23px;
  }

  .product-tabs-section .dosage-group p {
    font-size: 20px;
    line-height: 1.4;
  }

  .ingredients-list p {
    font-size:15px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
  }

  .description-title {
    font-size: 30px;
  }

  .description-text p {
    font-size: 20px;
  }

  .gummies-features-section p.gummies-feature-label {
    font-size: 20px;
    font-weight: 500;
  }

  .benefits-carousel .owl-nav button.owl-next {
    right: -53px;
  }

  .benefits-carousel .owl-nav button.owl-prev {
    left: -53px;
  }

  .gummies-products-grid {
    gap: 30px;
  }

  .gummies-benefits-section .gummies-benefits-image {
    max-width: 100%;
  }

  .gummies-benefits-section p.benefits-intro {
    font-size: 20px;
  }

  .reviews-carousel .owl-nav .owl-next {
    right: 0px;
  }

  .reviews-carousel .owl-nav .owl-prev {
    left: 0;
  }

  .gummy-5 {
    bottom: 24px;
  }

  .gummy-8 {
    top: 124px;
  }
}

@media (max-width: 1024px) {
  .comparison-text {
    padding: 10px 27px;
  }

  .content-title-shop h1 {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .single-product .gummies-product-box {
    padding: 60px 50px;
  }

  .product-tabs-section .tab-header {
    font-size: 16px;
    padding: 5px 10px;
  }

  .ingredients-list,
  .composition-table {
    width: 100%; 
  }

  .shop-gummies-section {
    padding: 50px 0 40px;
  }

  .gummies-products-grid {
    padding: 0px 70px;
  }

  .site-footer {
    padding: 50px 20px;
  }

  .footer-brand-title {
    font-size: 2rem;
  }

  .footer-brand-subtitle {
    font-size: 1.1rem;
  }

  .footer-legal-link {
    font-size: 1rem;
  }

  .gummies-benefits-section {
    padding: 80px 0 40px;
  }

  .gummes-diffenrence-title {
    max-width: 100%;
  }

  .gummies-difference-section .title-h2 {
    font-size: 2rem;
    padding: 0 20px;
  }

  .gummies-difference-section .sub-title-h2 {
    font-size: 20px;
    padding: 0 20px;
  }

  .comparison-row {
    gap: 0px;
  }

  .comparison-text {
    padding: 18px 30px;
  }

  .comparison-text p {
    font-size: 1rem;
  }

  .hero-gummies-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-visual-wrapper {
    min-height: 400px;
    margin-top: 40px;
  }

  .gummy-hero img {
    width: 45px !important;
  }

  /* Hide some gummies on mobile for performance */
  .gummy-hero-2,
  .gummy-hero-4,
  .gummy-hero-7 {
    display: none;
  }
  .pack-products-grid {
          gap: 10px;
        justify-content: space-around !important;
        padding: 0 25px;
}
.pack-selections {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0;
            flex-wrap: wrap;
}

}

@media (max-width: 767.98px) {
  .benefits-carousel .owl-nav button.owl-prev {
    left: -55px;
  }

  .benefits-carousel .owl-nav button.owl-next {
    right: -55px;
  }

  .benefits-carousel-section .benefits-slide {
    max-width: 100% !important;
  } 

  .site-footer {
    padding: 40px 15px;
  }


  .footer-brand-title {
    font-size: 1.8rem;
  }

  .footer-brand-subtitle {
    font-size: 1rem;
  }

  .footer-legal-nav {
    gap: 20px;
  }

  .footer-legal-link {
    font-size: 0.95rem;
  }

  .gummies-difference-section .title-h2 {
    font-size: 1.6rem;
  }

  .gummies-difference-section .sub-title-h2 {
    font-size: 1rem;
  }

  .comparison-icon {
    width: 100px;
    height: 100px;
  }

  .comparison-text {
    padding: 7px 9px;
  }

  article.comparison-card.include-card {
    margin-top: 5px;
  }

  .comparison-text p {
    font-size: 0.95rem;
  }

  .comparison-row .col-6 {
    padding: 0 !important;
  }

  .comparison-row {
    padding: 0 10px;
  }

  .comparison-icon img {
    max-width: 78%;
  }

  .comparison-card {
    padding: 0 7px;
  }

  .decoration-image img {
    max-width: 100%;
  }
.reviews-decor-img{
    top:-30px;
    left:-30px;
}

.reviews-decor-photo{
    width:120px;
}
}

@media (max-width: 575px) {
  .single-product .gummies-product-box {
    padding: 60px 10px;
  }
 
  .tab-btn {
    width: stretch;
  }

  .product-tabs {
    gap: 8px;
  }

  .description-title {
    font-size: 26px;
  }

  .description-text p {
    font-size: 17px;
  }

  .gummies-features-section p.gummies-feature-label {
    font-size: 17px;
  }

  .benefits-carousel-section .benefts-products-carousel {
    padding: 40px 80px !important;
  }

  .shop-gummies-section .sub-title-h2 {
    font-size: 20px;
    padding: 0px 0px;
    max-width: 100%;
  }

  .gummies-products-grid {
    padding: 0px 20px;
  }

  .footer-brand-title {
    font-size: 1.5rem;
  }

  .footer-brand-subtitle {
    font-size: 0.9rem;
  }

  .footer-legal-link {
    font-size: 0.9rem;
  }

  .gummies-difference-section .title-h2 {
    font-size: 1.4rem;
  }

  .comparison-text p {
    font-size: 17px;
  }

  .gummies-benefits-section p.benefits-intro {
    font-size: 17px;
  }

  .comparison-row {
    gap: 20px;
  }

  .comparison-text {
    padding: 12px 17px;
  }

  section.sommeil-usage-section {
    padding: 40px 0;
  }

  img.sommeil-usage-img.img-fluid {
    max-width: 70%;
  }

  .cree-pack-title {
    max-width: 100%;
  }

  h2.shop-title-carousel {
    max-width: 100%;
  }

  .gummy-3 {
    top: 30% !important;
  }

  .gummy-8 {
    top: 27% !important;
    right: 9% !important;
  }

  .gummy-1 {
    top: 23% !important; 
  }

  .pack-card {
    gap: 0px;
  }

  .hero-gummies-section {
    padding-bottom: 30px 0 0 !important;
  }
  .gummy-hero img {
    width: 35px !important;
  }
  .pack-products-grid .col-xl-2 {
    padding: 0 !important;
}
    .pack-products-grid {
        gap: 30px; 
        padding: 40px 20px;
    }

.box-choix-proucts{
  order: 1 !important;
}
.list-pack-prt{
  order: 2 !important;
}

}