.reminder-stick {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  transition: all 0.5s ease-in-out;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #f2f2f2;
  box-shadow: 0px 10px 12px 0px black;
}

.reminder-sticky {
	display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.reminder-usps {
	font-size: 12px;
}

.reminder-usps > a > i {
	margin-right: 5px;
}

.reminder-product {
	display: flex;
  flex-direction: row;
  align-items: center;
}

.reminder-textbox > h1 {
  font-weight: 600;
  color: black;
	margin: 0;
  font-size: 24px;
  margin-bottom: 5px;
}

.reminder-img {
	margin-right: 20px;
}

/* Cart Section */
.reminder-cart {
	display: flex;
  align-items: center;
  text-align: center;
}
.reminder-cart-add {
  display: flex;
  align-items: center;
	background-color: #6cba2a;
  color: white;
  padding: 10px 30px;
  border-radius: 10px;
  height: 100%;
  margin-left: 25px;
}

.reminder-cart-add:hover {
  text-decoration: none !important;
}

.reminder-cart-add:hover {
	color: white;
}

.reminder-cart-add > img {
	margin-right: 10px;
  height: 14px;
}

.reminder-cart-number {
	display: flex;
  flex-direction: row;
}

.reminder-cart-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 5px 10px;
    width: 100px;
    background-color: white;
}

.reminder-cart-numbers > input {
    width: 30px;
    height: 30px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    background: none;
    padding: 0;
  position: relative; 
}



.reminder-cart-numbers > button {
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #69A14A; /* Groen zoals in de tweede afbeelding */
    padding: 5px 10px;
}

.reminder-cart-numbers > input {
    width: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: none;
    background: transparent;
    outline: none;
    color: #333;
}

.reminder-numbers-min:hover,
.reminder-numbers-plus:hover {
    color: #4F8A2F; /* Donkergroen bij hover */
}


.reminder-cart-numbers > button {
	border: none;
  background: transparent;
  padding: 5px;
}

.reminder-numbers-min {
	
}

.sticky2 {
  bottom: 0;
  top: auto;
  z-index: 9999; /* Maak dit hoger dan andere elementen */
  opacity: 1;
  visibility: visible;
  width: 100%;
} 
 
@media (max-width: 1200px) {
	.reminder-textbox > h1 {
    margin: 0;
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .reminder-textbox > h1 {
  	font-size: 13px;
  }
  
  .sticky {
  	top: 99px;
  }
}

@media (min-width: 900px) {
  .reminder-cart-numbers > input {
  	left: 6.5px;
  }
}

@media (max-width: 768px) {
  .reminder-cart-add > img {
  	margin: 0;
  }
  
  .reminder-cart-add {
  	padding: 5px 15px;
    margin-left: 10px;
    width: 100%;
  }
  
  .reminder-cart-numbers > input {
  	font-size: 12px;
  }
  
  .reminder-img {
  	margin-right: 10px;
  }
  
  .reminder-img > img {
      min-width: 100%;
    max-width: unset !important; 
  }
  
  .reminder-cart-add {
    height: 40px;
  	margin-left: 0 !important;
    display: flex; 
    justify-content: center;
    gap: 5px; 
  }
  
  .reminder-sticky {
  	margin-bottom: 8px; 
  }
  
  .reminder-textbox {
  	max-width: 70%;
  }
  
  .reminder-stick > .container:last-child {
  	margin-bottom: 10px;
  }
}

@media (max-width: 1260px) {
  .reminder-textbox {
  	max-width: 70%;
  }
  .reminder-cart {
  	width: 50%;
    justify-content: flex-end;
  }
}

@media (max-width: 360px) {
  .reminder-textbox > h1 {
  	font-size: 10px; 
  }
}