*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    /* outline: 1px solid rgba(255,0,0,0.2); */
}

body{
    background-color: var(--color-background);
    padding: 0 var(--space-6);
    width: clamp(325px,100vw,1600px);
    margin: 0 auto;
    overflow-x: hidden;
}

@media(max-width:768px){
    body{
        padding: 0 var(--space-3);
    }
}

/* Fluid Typography Scale */

h1, .fs-h1 {
    font-size: clamp(2.875rem, 2.503rem + 1.281vw, 3.75rem);
    line-height: 1.2;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
}

h2, .fs-h2 {
    font-size: clamp(2.125rem, 1.834rem + 0.940vw, 2.875rem);
    line-height: 1.25;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
}

h3, .fs-h3 {
    font-size: clamp(1.625rem, 1.359rem + 0.752vw, 2.25rem);
    line-height: 1.3;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
}

h4, .fs-h4 {
    font-size: clamp(1.25rem, 1.050rem + 0.575vw, 1.75rem);
    line-height: 1.35;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
}

h5, .fs-h5 {
    font-size: clamp(1.0rem, 0.830rem + 0.430vw, 1.375rem);
    line-height: 1.4;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
}

h6, .fs-h6 {
    font-size: clamp(0.875rem, 0.750rem + 0.380vw, 1.125rem);
    line-height: 1.45;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
}

p, .fs-p {
    font-size: clamp(0.8125rem, 0.675rem + 0.320vw, 1.0rem);
    line-height: 1.6;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-body);
}

.bold{
    font-weight: 700;
}

.line-through{
    text-decoration: line-through;
}
/* standaard waarden 6a4ca3 9595cf*/
:root {
    /* kleuren */
    --color-text: black;
    /* --color-background: #2E5984; */
    /* --color-background: rgb(255, 245, 236); */
    --color-background: rgb(244, 244, 241);
    --color-accent: #4CAF50;
    --color-cta: #EE6C4D;
    --color-lightblue: #89d4f3;

    /* lettertype */
    /* --font-heading: 'Montserrat'; */
    --font-heading: 'Playfair Display';
    /* --font-body: 'Roboto'; */
    --font-body: 'inter';

     /* Spacing */
     --space-1: 4px;
     --space-2: 8px;
     --space-3: 16px;
     --space-4: 24px;
     --space-5: 32px;
     --space-6: 48px;
     --space-7: 64px;
     --space-8: 96px;
     --space-9: 128px;
     --space-10: 160px;

     --stars-percent: 0%
}

i {
    color: #2e3a59 !important;
}

/* Stijling van de navigatiebalk */
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: clamp(320px,100vw,1400px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    height: 88px;
    padding: var(--space-4) var(--space-3);
}

.brand{
    display: flex;
    flex: 1;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
}


.brand_logo{
    height: clamp(25px,8vh,120px);
    width:auto;
}

.links{
    height: 100%;
    display: flex;
    justify-content: center;
    transition: top 1s ease;
    min-width: 350px;
}

.links ul{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.links li{
    height: 100%;
    padding: var(--space-2);
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.icons{
    flex: 1;
    display: flex;
    justify-content: end;
    height: 100%;
    align-items: center;
    gap: var(--space-3);
}

.open_sidebar{
    background-color: transparent;
    border: none;
    display: none;
}

.glass{
   /* From https://css.glass */
    background: rgba(255, 255, 255, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11.3px);
    -webkit-backdrop-filter: blur(11.3px);
    border: 1px solid rgba(255, 255, 255, 0.49);
}

.close_sidebar{
    background-color: transparent;
    border: none;
    display:none;
    position:absolute;
    top:10px;
    right:10px;
}

header i{
    font-size: clamp(1.125rem, 0.9972rem + 0.5114vw, 1.4063rem);
    color: var(--color-text);
}

nav ul li:hover{
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}

.cart_icon{
    display: flex;
}

.cart_amount{
    position: relative;
    right: 12px;
    top: -12px;
    background-color: var(--color-cta);
    border-radius: 50%;
    padding: var(--space-1);
    color: var(--color-text);
    text-align: center;
}

.cart_icon button{
    background-color: transparent;
    border: none;
}

.hidden{
    display: none;
}

.lightblue{
    color: #89d4f3;
}

@media(max-width:768px){
    .links{
        position: absolute;
        top: -450px;
        width: clamp(350px, 95vw, 1400px);          /* zelfde breedte */
        height: calc(50dvh - 88px);         /* past onder de navbar */
        justify-content: center;
        padding: var(--space-4) 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        background-color: white;
    }
    .links.active{
        display: flex;
        position: absolute;
        top: 88px;
      }

    .links ul{
        display: flex;
        flex-direction: column;
    }
    .open_sidebar{
        display: block;
    }
    .close_sidebar{
        display: block;
    }
}

/* Stijling van de hero */
#hero{
    display: flex;
    min-height: 100vh;
    padding: calc(88px + var(--space-6)) 0 var(--space-10) 0;
}

.hero_container{
    background-image: url(../images/hero-background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 65% 35%;
    padding: var(--space-4);
}

.video_container{
    display: flex;
    align-items: center;
}

.hero_text{
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    justify-content: center;
}
.hero_video{
    width: 100%;
}

.hero_text h1, .hero_text p{
    color: white;
}

.hero_benefits{
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.hero_benefits li{
    color: white;
    display: flex;
    gap: var(--space-2);
}

.hero_benefits i{
    color: green !important;
    background-color: white;
    border-radius: 9999px;
    height: 1.5rem;
    width: 1.5rem;
    align-content: center;
}

.hero_cta{
    background-color: var(--color-cta);
    border-radius: 16px;
    padding: var(--space-3);
    width: 50%;
    color: white;
    font-weight: 700;
    text-align: center;
    margin-top: var(--space-4);
}

.hero_title{
    border-right: 1px solid white;
}

@media(max-width:768px){
    #hero{
        padding: 0 0 var(--space-6) 0;
        min-height: calc(100vh - 88px - var(--space-2))
    }
    .hero_container{
        grid-template-columns: 1fr;
    }
    .hero_cta{
        width: 100%;
    }
}

/* waarom sectie */
#why{
    padding: var(--space-10) 0;
}

.why_container{
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.why_text{
    text-align: center;
}

.why_cards{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* mobile feel */
    touch-action: pan-x;               /* allow horizontal panning */
    gap: var(--space-2);
    align-items: stretch; /* <— kaarten bepalen zelf hun hoogte */
    cursor: grab;
}

.why_cards * {
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* oude Edge */
}

.why_cards::-webkit-scrollbar {
  display: none; /* verberg scrollbar */
}

.card {
  flex: 0 0 30%;          /* elke kaart neemt 30% van de breedte op desktop */
  background: #f8f8f8;
  border-radius: 16px;
  padding: var(--space-4);
  scroll-snap-align: start;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card_image{
    height: 10vh;
    display: flex;
    justify-content: center;
}

.card_image img{
    height: 100%;
}

.card_text{
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.card_cta{
    background-color: var(--color-cta);
    color: white;
    padding: var(--space-3);
    text-align: center;
    border-radius: 16px;
    font-weight: 700;
}

@media(max-width:768px){
    #why{
        padding: var(--space-6) 0;
    }
    .card {
    flex: 0 0 80%;       /* op mobiel: 90% van de viewport */
  }
}

/* Stijling van de productpagina */
#product{
    width: 100%;
    display: flex;
    padding-top: calc(88px + var(--space-6))
}

.product_container{
    width: 100%;
    display:flex;
    gap: var(--space-5);
}

/* Desktop-only sticky */
@media (min-width:769px){
  .product_image{
    position: sticky;
    top: calc(88px + var(--space-6));
    align-self: flex-start;
    width:45%;
  }
}

.product_image img{
    width: 100%;
    border-radius: 16px;
    height: auto;
    aspect-ratio: 1 / 1; /* Expliciete aspect ratio */
}

.product_info{
    width:55%;
    overflow: scroll;
    -ms-overflow-style: none;    /* IE en Edge */
    scrollbar-width: none;       /* Firefox */
}

.product_info::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, Opera */
}

.rating{
    display: flex;
    margin-bottom: var(--space-4);
    align-items: center;
    min-height: 26px; /* ✅ Voorkomt height shift */
}

.stars {
  position: relative;
  display: inline-block;
}

.stars-empty {
  color: lightgray;
}

.stars-filled {
  color: var(--color-cta);
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: calc(var(--stars-percent) * 1%);
}

.rating_amount {
  margin-left: var(--space-2);
}

.reviews_link{
    margin-left: var(--space-4);
    display: inline-block;
    min-width: 140px; /* ✅ Voorkomt width shift */
    text-align: left;
}

#p-name{
    margin-bottom: var(--space-4);
}

#p-desc{
    margin-bottom: var(--space-4);
}

.quantity_container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: var(--space-4);
    gap: var(--space-2);
}

.option{
    border: 1px solid lightgray;
    padding: var(--space-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
}

.option.active{
    border-color: var(--color-cta);
    background-color: var(--color-cta);
    box-shadow: 0 2px 8px rgba(243, 107, 74, 0.3);
}

.option.active p{
    color: white;
}

.option.active:hover{
    border-color: var(--color-cta);
    background-color: var(--color-cta);
    box-shadow: 0 2px 8px rgba(243, 107, 74, 0.3);
}

.option:hover {
    border-color: #f36b4a;
    background-color: #fff5f0;
}

.price_stock{
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.product_price{
    letter-spacing: 2px;
    margin-bottom: var(--space-2);
}

.stock{
    display: flex;
    gap: var(--space-2);
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ff6600;
  border-radius: 50%;
  animation: blink 1s infinite;
  position: relative;
  top: 7px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.text p{
    color: var(--color-cta);
}

.add_to_cart_container{
    margin-bottom: var(--space-4);
    display: flex;
    justify-content: center;
}

.add_to_cart_btn{
    padding: var(--space-3);
    background-color: var(--color-cta);
    border: none;
    border-radius: 9999px;
    width: 60%;
    cursor: pointer;
    transition: color 0.6s ease;
}

.add_to_cart_btn:hover{
    background-color: black;
}

.add_to_cart_btn p {
    color: white;
}

.products_usp{
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.usp{
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.usp i{
    color: green !important;
}

details summary{
    border-bottom: 1px solid var(--color-text);
    padding: var(--space-3) 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

details i{
    font-size: 12px;
    color: var(--color-text);
}

details ul, details p{
    padding: var(--space-2) 0;
}

.benefits_list{
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.benefits_list li{
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.benefits_list h3{
    font-weight: 700;
    font-size: clamp(0.8rem, 0.7091rem + 0.3636vw, 1rem);
    margin-bottom: var(--space-2);
}

.benefits_list p {
    padding: 0;
}

.benefits_list div{
    border: 1px solid black;
    border-radius: 16px;
    padding: var(--space-2);
}

.how_to_use{
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.how_to_use li{
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

.how_to_use div{
    background-color: var(--color-cta);
    border-radius: 50%;
    height: 33.75px;
    width: 33.75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how_to_use p{
    width: 80%;
}

@media(max-width:768px){
    main{
        padding-top: calc(88px + var(--space-2));
    }
    #product{
        padding-top: 0;
    }
    .product_info{
        width:100%;
        margin-left: 0;
    }
    .product_image {
         position: static; /* niet relative */
         top: auto;
         width: 100%;
         aspect-ratio: 1/1;
     }
    
    .product_container{
        flex-direction: column;
    }
    .price_stock{
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }
    .product_amount{
        gap: var(--space-2);
        align-items: center;
    }
    .amount{
        align-self: center;
        width: 35%;
    }
    .add_to_cart_btn{
        width:65%;
    }
    .products_usp{
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
    }
}

/* ingredienten */
#ingredients{
    margin-top: var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    background-color: white;
    width: 100vw;
    margin-left: calc(50% - 50vw); /* centreert perfect over de hele viewport */
    padding: var(--space-10) 0;
}

.ingredients_container{
    display: flex;
    width: clamp(325px,100vw,1600px);
    padding: 0 48px;
}

.ingredient_picture{
    display: flex;
    justify-content: center;
}

.ingredient_picture img{
    border-radius: 16px;
    width: 80%;
}

.ingredients{
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    width: 50%
}

.ingredients_list{
    display:flex;
    gap: var(--space-2);
}

.ingredients_list button{
    padding: var(--space-2);
    cursor: pointer;
    background-color: #e8defa;
    border: 1px solid lightgray;
    border-radius: 16px;
}

.slider_container{
    width: 50%;
    position: relative;
}

.slider_item{
    padding: var(--space-3);
    background-color: white;
    display: none; 
    box-shadow: 0px 155px 62px rgba(0, 0, 0, 0.01), 0px 87px 52px rgba(0, 0, 0, 0.05), 0px 39px 39px rgba(0, 0, 0, 0.09), 0px 10px 21px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
    background: radial-gradient(
    circle at bottom left,
    #e8defa 0%,      /* licht lavendel centrum */
    #ffffff 80%      /* vervaagt naar wit */
  );
}

.slider_item.active{
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    height: 225px;
    border-radius: 16px;
}

.slider_buttons{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-4);
    bottom: -20px;
}

.slider_btn{
    border-radius: 9999px;
    height:40px;
    width: 40px;
    border: none;
    background-color: #e8defa;
    border: 1px solid lightgray;
    cursor: pointer;
}

@media(max-width: 768px){
    #ingredients{
        margin-top: var(--space-6);
        padding: var(--space-6) 0;
    }
    .ingredients_container{
        flex-direction: column;
        padding: 0 var(--space-3);
    }
    .ingredient_picture{
        display: none;
        /* padding: 0 var(--space-3); */
    }
    .ingredient_picture img{
        width: 100%;
    }
    .ingredients{
        width: 100%;
    }
    .slider_container{
        width: 100%;
    }
    .slider_item.active{
        height: 250px;
    }
    .ingredients_list{
        width: 100%;
        display: inline-block;
    }
    .ingredients_list button{
        margin-right: var(--space-2);
        margin-bottom: var(--space-2);
    }
}

@media(max-width: 320px){
    .slider_item.active{
        height: 300px;
    }
}

/* Reviews */
#reviews{
    padding-top: var(--space-10);
    display: flex;
    justify-content: space-between;
}

.rating_summary{
    width: 40%;
    position: sticky;
    align-self: flex-start;
    top: calc(88px + var(--space-6));
}

.average_rating{
    display: flex;
    gap:var(--space-2);
    align-items: center;
    margin-bottom: var(--space-2);
}

.ratings{
    margin-top: var(--space-4);
}

.rating_pstar{
    display: flex;
    margin-bottom: var(--space-2);
    align-items: center;
}

.rating_pstar .star-bucket {
    min-width: 1rem;
}

.pbar{
    width: 300px;
    background-color: lightgrey;
    height:10px;
    align-self: center;
    border-radius: 9999px;
    position: relative;
    margin: 0 var(--space-3);
}

.pbar::before{
    width: var(--fill);
    position: absolute;
    background: var(--color-cta);
    content: "";
    top: 0; left: 0; bottom: 0;
    border-radius: 9999px;
}

.star{
    color: var(--color-cta);
}

.review_stars {
  position: relative;
  display: inline-block;
}

.review_stars-empty {
  color: lightgray;
}

.review_stars-filled {
  color: var(--color-cta);
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
}

.write_review{
    background-color: var(--color-cta);
    border-radius: 9999px;
    padding: var(--space-3);
    margin-top: var(--space-4);
    border: none;
    cursor: pointer;
    color: white;
}

#reviews_list{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.review{
    padding: var(--space-3);
    border-bottom: 1px solid black;
}

.review_header{
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.review_stars{
    margin-bottom: var(--space-2);
}

.review_title{
    margin-bottom: var(--space-2);
}

.review_body{
    margin-bottom: var(--space-2);
}

.load_more{
    width: 25%;
    align-self: center;
    padding: var(--space-3);
    background-color: var(--color-cta);
    border: none;
    border-radius: 9999px;
    color: white;
    margin-top: var(--space-4);
}

@media(max-width:768px){
    #reviews{
        flex-direction: column;
        padding-top: var(--space-6);
    }
    .rating_summary{
        top:0;
        position: relative;
        width: 100%;
        margin-bottom: var(--space-4);
    }
    .load_more{
        width: 100%;
    }
}

/* faq */
#faq{
    padding: var(--space-10) 0;
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    justify-content: center;
    scroll-margin-top: 88px;
}

.faq_image{
    width: auto;
    max-width: 55%;
    max-height: 100vh;
    position: sticky;
    top: calc(88px + var(--space-6));
    flex-shrink: 0;
}

.faq_image img{
    border-radius: 16px;
    width:100%
}

.faq_questions{
    width: 45%;
}

.faq{
    display:flex;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.question{
    border:none;
    margin-bottom: 0;
}

.faq_questions p {
    padding-bottom: var(--space-2);
    padding-top: var(--space-2);
}

.faq_questions details{
    border-bottom: 1px solid black;
    padding: var(--space-3);
}

@media(max-width: 768px){
    #faq{
        padding-top: var(--space-6);
        padding-bottom: var(--space-6);
    }
    .faq_image{
        display: none;
    }
    .faq_questions{
        width:100%;
    }
}

/* Winkelwagen */
.shopping_cart{
    height: calc(99vh - 88px);
    position: fixed;
    top: 88px;
    right: -10000px;
    z-index: 1001;
    transition: right 0.5s ease;
}

.shopping_cart.active{
    right: 16px;
}

.empty_cart_container{
    height:100%;
    width: clamp(340px,50vw,1000px);
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

.empty{
    display: flex;
    justify-content: center;
    width: 100%;
}

.empty_btn {
    padding: var(--space-3);
    background-color: var(--color-cta);
    border-radius: 9999px;
    width: 60%;
    border: none;
}

.empty_btn:hover{
    cursor: pointer;
}

.empty a{
    color: white !important;
}

.close_cart{
    background-color: transparent;
    border: none;
    position:absolute;
    top:10px;
    right:10px;
    font-size: clamp(1.125rem, 0.9972rem + 0.5114vw, 1.4063rem);
}

.cart_container{
    height:100%;
    width: clamp(340px,50vw,1000px);
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: var(--space-2);
    justify-content: space-between;
}

.title_products{
    height: 25%;
}

.title{
    height: 25%;
    text-align: center;
}

.products {
    height: 75%;
    display: flex;
    justify-content: space-between;
}

.products img{
    height: 75%;
    border-radius: 16px;
}

.picture_product{
    display: flex;
    align-items: center;
}

.name_amount{
    display: flex;
    gap: var(--space-2);
    flex-direction: column;
    margin-left: var(--space-2);
}

.total_price{
    display: flex;
    align-items: center;
    margin-right: var(--space-2);
}

.checkoutBtn {
  width: 75%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(15, 15, 15);
  border: none;
  color: white;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  align-self: center;
  margin-bottom: var(--space-4);
}

.svgIcon {
  width: 16px;
}

.svgIcon path {
  fill: white;
}

.checkoutBtn::before {
  width: 100%;
  height: 130px;
  position: absolute;
  content: "";
  background-color: white;
  border-radius: 50%;
  left: -100%;
  top: 0;
  transition-duration: .3s;
  mix-blend-mode: difference;
}

.checkoutBtn:hover::before {
  transition-duration: .3s;
  transform: translate(100%,-50%);
  border-radius: 0;
}

.checkoutBtn:active {
  transform: translate(5px,5px);
  transition-duration: .3s;
}

.amount_in_cart{
    width: 60px;
    height: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    appearance: none;
}

/* Verberg pijltjes in Chrome/Safari */
.amount_in_cart::-webkit-outer-spin-button,
.amount_in_cart::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.remove_all_items{
    display: flex;
    gap: var(--space-2);
    align-items: center;
    margin-bottom: var(--space-2);
}

.remove_all_items button{
    background-color: transparent;
    border: none;
}

.remove_all_items i{
    font-size: clamp(1.125rem, 0.9972rem + 0.5114vw, 1.4063rem);
    color: red !important;
}

@media(max-width: 768px){
    .cart_container, .empty_cart_container{
        width: calc(100vw - 32px)
    }
    .products{
        height:50%;
    }
    .amount_in_cart{
        width: 45px;
        height: 25px;
    }
}

/* banner */
.banner {
  position: relative;
  width: 100vw;       /* gebruik viewportbreedte */
  overflow: hidden;   /* voorkomt dat iets buiten beeld scrollt */
  /* background: var(--color-lightblue); */
  background: #e8defa;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  height: 50px;
  margin-left: calc(50% - 50vw); /* centreert perfect over de hele viewport */
  margin-top: var(--space-6);
}

.banner-track {
  display: flex;
  gap: 20px;                /* ruimte tussen de woorden */
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  height: 100%;
  align-items: center;
  width: 100%;
}

.banner span {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 0;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media(max-width:768px){
    .banner-track{
        animation: scroll-left 10s linear infinite;
    }
}

/* stappen sectie */
#steps{
    margin-top: var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.steps_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 75%;
    gap: var(--space-7);
}

.steps_container video{
    width: 100%;
    border-radius: 16px;
}

.step{
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    justify-content: center;
}

@media(max-width: 768px){
    #steps{
        margin-top: var(--space-6);
    }
    #steps h2{
        text-align: center;
    }
    .steps_container{
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .step-1_video{order:1}
    .step-1_text{order:2}
    .step-2_video{order:3}
    .step-2_text{order:4}
    .step-3_video{order:5}
    .step-3_text{order:6}
}

/* slaapproblemen sectie */
#sleep-problems{
    margin-top: var(--space-10);
    background-color: white;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: var(--space-4);
}

.container{
    display: flex;
    background-color: var(--color-background);
    padding: var(--space-10) 0;
    border-radius: 16px;
}

.content_container{
    width: 50%;
    margin: 0 auto;
}

.sleep-problem-body {
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
}

.quotes{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.quote{
    gap: var(--space-2);
    display: flex;
    flex-direction: column;
    background-color: white;
    
    padding: var(--space-4);
    border-radius: 16px;
}

.quote_title{
    font-size: 20px;
}

.quote_body{
    font-size: 14px;
}

.quote_author{
    font-size: 14px;
}

.quote i{
    color: darkgreen !important;
    font-size: 24px;
}

@media(max-width: 768px){
    #sleep-problems{
        padding: var(--space-4) var(--space-2);
        margin-top: var(--space-6);
    }
    .container{
        padding: var(--space-6) 0;
    }
    .content_container{
        width: 100%;
        padding: 0 var(--space-3);
    }
    .quotes{
        grid-template-columns: 1fr;
    }
}

/* Over ons */
#about{
  background-color: white; /* zacht, past bij je palette */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: var(--space-10) 0;
}

.about_container{
  width: clamp(320px, 100vw, 1600px);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;  /* tekst iets prominenter */
  gap: var(--space-8);
  align-items: center;
}

.about_text p{ margin-bottom: var(--space-3); }
.about_kicker{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: #2f5132; /* rustige groene tint voor accent */
  margin-bottom: var(--space-2);
}

.about_mission{
  background: var(--color-background);
  border-left: 4px solid #2f5132;
  padding: var(--space-3);
  border-radius: 12px;
}

.about_cta{
  display: inline-block;
  margin-top: var(--space-4);
  padding: 12px 20px;
  border-radius: 9999px;
  background: var(--color-cta);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background .3s ease;
}
.about_cta:hover{ background: #000; }

.about_media img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

@media (max-width: 768px){
  #about{ padding: var(--space-6) 0; }
  .about_container{ 
    padding: 0 var(--space-3); 
    grid-template-columns: 1fr;
    gap: var(--space-6);
    }
    .about_media{order:-1}
}

/* Review achterlaten */
.review-form {
  max-width: 400px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3)
}

.review-form input,
.review-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.review-form button {
  background: #89d4f3;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.review-form button:hover {
  background: #72c3e4;
}

.review-form .reviewStars {
  display: flex;
  gap: 4px;
  cursor: pointer;
}

.review-form .reviewStar {
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.2s;
}

.review-form .reviewStar.active {
  color: gold;
}

/* footer */
footer{
    padding: var(--space-6) 0;
}
.footer_top{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:var(--space-3);
}

.outlined{
    border: 1px solid lightgrey;
    padding: var(--space-3);
}

.socials{
    display: flex;
    gap: var(--space-3);
    flex-direction: column;
}

.socials_title{
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials_icons{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    height: 50%;
}

.socials_icons .outlined{
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials_icons i{
    font-size: clamp(1.125rem, 0.9972rem + 0.5114vw, 1.4063rem);
    color: var(--color-text);
}

.footer_cta{
    display: block; /* voorkomt overlap en neemt alleen de benodigde ruimte */
    text-align: center;
    padding: var(--space-3);
    background-color: var(--color-cta);
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    margin: var(--space-3) auto 0 auto;
}

@media(max-width:768px){
    .footer_top{
        grid-template-columns: 1fr;
    }
}