.auth-container {
  max-width: 1200px;
  margin: 50px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  padding: 40px;
}
h2 {
  font-size: 26px !important;
  margin-bottom: 30px;
  font-weight: 600;
}
.form-control {
  font-size: 16px;
  padding: 16px !important;
  border-radius: 4px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  border-color: #000;
  box-shadow: none;
}

.btn-outline-invert {
  background-color: #fff;
  color: #000;	  
  border: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;	  
  transition: all 0.3s ease;
  margin-right: 20px;
}

.btn-outline-invert:hover {
  background-color: #000;
  color: #fff;
}

.innerlink a {
  color: #97bfe0 !important;
  text-decoration:none !important;
}

.btn-black {
	background: #333333;
	border: 1px solid #333333;
	border-radius: 5px;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	font-weight: 400;
	padding: 19px 15px;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.btn-black:hover {
	background: #555555;
	border-color: #555555;
	color: #fff;
}
	
.login-input {
    padding: 12px 14px;
    background-color: #eef4ff;
    border-radius: 0;
    border: 1px solid #dbe3ff;
    font-size: 14px;
}

.login-input:focus {
    outline: none;
    box-shadow: none;
    border-color: #000;
    background-color: #f5f7ff;
}

.form-label {
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
}

.inputfield {
  padding: 12px;
  color: #333;
  font-size: 15px;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.inputfield:focus {
  border-color: #0d6efd !important;
  box-shadow: 0 0 0 2px rgba(13,110,253,.1);
}


.error-text {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 4px;
  font-weight: 500;
}

input.user-touched:invalid,
select.user-touched:invalid {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.15);
}


	.payment-option label {
  cursor: pointer;
  transition: 0.2s all;
}
.payment-option.active label {
  border-color: #0d6efd;
  background-color: #e7f1ff;
}

.delivery-option > label {
  font-weight: 600;
  transition: all 0.2s ease;
}
.delivery-option.active > label {
  background-color: #f8f9ff;
  border-color: #007bff;
}
.label-text {
  color: #444;
  font-size: 0.95rem;
  margin-left: 4px;
}

#map {
  height: 500px;
  width: 100%;
}

#mpl-list-wrapper {
  border-right: 1px solid #ddd;
  padding-right: 10px;
}

/* Alap kártyás megjelenés */
.delivery-option label,
.sub-option label,
.payment-option label {
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
}

.delivery-option.active > label,
.payment-option.active > label {
  border-color: #0d6efd;
  background-color: #e7f1ff;
}

.sub-option.active label {
  border-color: #0d6efd;
  background-color: #e7f1ff;
}

/* 👇 Ez a sor a megoldás kulcsa */
.sub-option.active label:hover {
  background-color: #e7f1ff !important;
}


/* Almenü formázás */
.sub-delivery-options {
  display: none;
  margin-top: 10px;
  margin-left: 1rem;
  border-left: 2px solid #eee;
  padding-left: 1rem;
}

.delivery-option.active .sub-delivery-options {
  display: block;
}

/* Csak az aktív almenü legyen kék */
.sub-option label {
  background-color: #fff;
  border: 1px solid #ccc;
}

.sub-option.active label {
  border-color: #0d6efd;
  background-color: #e7f1ff;
}

.sub-option label:hover {
  background-color: #f7f9fc;
}

.inputfield {
	padding:16px; 
	color: #999; 
	font-size:14px; 
	border:none !important;
	border-bottom: 2px solid #000 !important; 
	border-radius: 0px !important
}

#map { height: 500px; }

#shop_results {
    column-count: 2;
    column-gap: 40px;
}
#shop_results {
    break-inside: avoid;
    margin-bottom: 1em;
}

.coffee-slider {
  position: relative;
  overflow: hidden;
}
.coffee-slider .coffee-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateX(100%);
}
.coffee-slider .coffee-container.selected {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}