@charset "UTF-8";
/* CSS Document */

	/* Reset & basis */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
 /* background: linear-gradient(135deg, #1f2933, #111827); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: #ffffff;
}

/* Container */
.login-container {
  width: 100%;
  padding: 1rem;

}

.beschikbare-bezorgadressen {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  opacity: 0;
}
/* Wanneer actief */
.beschikbare-bezorgadressen.active {
 max-height: 10000px; /* groot genoeg voor animatie */
  opacity: 1;
}

.nieuw-bezorgadres-invoeren {
  width: 100%;
  /* padding: 1rem; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  opacity: 0;
}
/* Wanneer actief */
.nieuw-bezorgadres-invoeren.active {
  max-height: 1000px;
  opacity: 1;
}

.kado-tekst-blok{
  width: 100%;
  /* padding: 1rem; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  opacity: 0;
}
/* Wanneer actief */
.kado-tekst-blok.active {
  max-height: 500px;
  opacity: 1;
}
.text-area-giftmessage{
	font-size: 14px;
	padding: 10px;
	line-height: 20px;
	font-style: italic;
	
}

/* Card */
.login-card {
  text-align: left;
  line-height: 24px; 
  background-color: #fffff;
  border-radius: 12px;
  max-width: 420px;
  padding: 2rem;
  margin: 0 auto; 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); 
}

.form-error {
  background-color: #fdecea;
  border: 1px solid #cb2124;
  color: #cb2124;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Tekst */
.login-card h1 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}
.login-card h2 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  text-align: left;
  color:#3e5988;
}
.fles-naam{
  font-size: 0.9rem;
  line-height: 18px; 
}

.subtitle {
  margin-bottom: 2rem;
  color: #6b7280;
}
.gratis {
	color: #599E25;
}

/* Bestelling-overzicht (summary.php): vervangt de oude <table>-lay-out */
.summary-regel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.summary-eindtotaal {
  border-bottom: none;
  border-top: 1px solid #A0A0A4;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: bold;
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row1 {
  display: grid;
  grid-template-columns: 100%;
  grid-template-columns: 48% 48%;
  gap: 1rem;
}

.form-row2 {
  display: grid;
  grid-template-columns: 100%;
  gap: 1rem;
}
.form-row2b {
  display: grid;
  grid-template-columns: 7% 90%;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #374151;
}

input {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* Button */
.btn-verder {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #83b22d;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-verder:hover {
  background: #6f9526;
}

a.btn-verder,
a.btn-verder:link,
a.btn-verder:visited {
  color: #fff;
  text-decoration: none;
}
a.btn-verder:hover {
  color: #fff;
  text-decoration: none;
}

.Accountknopfactuur {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #748195;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.Accountknopfactuur:hover {
  background: #4d5b72;
}

.btn-primary {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  background: #748195;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #1e40af;
  background: #4d5b72;
}

/* Footer */
.form-footer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  text-align: left;
}

.form-footer a {
  color: #2563eb;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.7rem 2.5rem 0.7rem 0.8rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  margin-right: 20%;
  gap: 0rem;
  font-size: 0.95rem;
  color: #374151;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  margin: 0;
}
/* Select styling (landkeuze) */
select {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  background-color: #ffffff;
  color: #111;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Custom dropdown arrow */
.form-group {
  position: relative;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}

/* Focus state gelijk aan input */
select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* Checkbox (18+ bevestiging) */

.checkbox-group label {
  display: flex;
  width: 8%;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #374151;
  cursor: pointer;
  float: left;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.checkbox-group span {
  flex: 1;
  min-width: 260px;
  line-height: 1.4;
  text-align: left;
}
.statefield{
	margin-top:-2000px;
	margin-left:-2000px;
}
.foutmelding {
	font-weight: bold;
}

        
        @media(max-width: 1150px){
          #infonaastwinkelwagen{
            font-size: 100%;
            line-height: 200%;
          }
          .width-120{
            width: auto;
          }
          .cart-grid, 
          .card-grid *{
            font-size: 200%;
            font-family: Verdana, Geneva, sans-serif;
            line-height: 160%;
          }
          .btn{
            width: auto;
          }
          .cart-grid {
            flex-direction: column;
          }
          .cart-grid-bottle-overview,
          .cart-grid-price-overview {
            width: 100%;
          }
          .cart-grid-price-overview{
            margin-left: 0;
            margin-top: 40px
          }
          .custom-checkbox-container{
            padding-left: 55px;
          }
          .checkmark,
          .icon img{
            height: 40px;
            width: 40px;
          }
          .custom-checkbox-container .checkmark::after {
            left: 12px;
            top: 3px;
            width: 12px;
            height: 19px;
          }
          .kpi *{
            font-size: 106.75%;
          }
          .footerkoptekst{
            font-size: 112.5%;
          }
          .cart-grid {
            width: 100%;
          }
          .price-change-input{
            font-size: 28px;
          }
        }
  
        


/* Desktop extra spacing */
@media (min-width: 768px) {
  .login-card {
    padding: 2.5rem 3rem;
  }
  .form-row2 {
    grid-template-columns: 28% 68%;
  }	
	
	
}



	
	
