/* === UNIT SEÇİMİ === */
.adisyo-units {
  display: flex;
  justify-content: space-between;
  background-color: #f5f6f8;
  padding: 5px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.adisyo-units button {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.adisyo-units button:hover {
  background-color: var(--btn-accented-bgcolor-hover);
  color: #fff;
}

.adisyo-units button.active {
  background-color: var(--btn-accented-bgcolor);
  color: #fff;
}

/* === FEATURE ALANI === */
.adisyo-feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 16px;
}

.adisyo-feature-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

/* Checkbox ve Radio Ortak Görünüm */
.adisyo-feature-item input[type="checkbox"],
.adisyo-feature-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: 2px solid #ccc;
  background-color: #fff;
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

/* Radio yuvarlak, Checkbox köşeli */
.adisyo-feature-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
}
.adisyo-feature-item input[type="checkbox"] {
  border-radius: 4px;
}

/* Seçili durum */
.adisyo-feature-item input:checked {
  background-color: #000;
  border-color: #000;
}

/* Tik/Nokta görünümü */
.adisyo-feature-item input[type="checkbox"]:checked::after,
.adisyo-feature-item input[type="radio"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Radio için iç daire */
.adisyo-feature-item input[type="radio"]:checked::after {
  left: 53%;
}

/* Fiyat kısmı */
.adisyo-feature-price {
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}
div.quantity{
    display: none !important;
}
input.hidden {
    display: none;
}

#adisyo-delivery-modal.adisyo-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.adisyo-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-sizing: border-box;
}

.adisyo-modal-content h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.adisyo-btn {
  border: none;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 50px !important;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

/* .adisyo-btn.delivery {
  background-color: #005eff !important;
  color: white !important;
}

.adisyo-btn.pickup {
  background-color: #e1e1e1 !important;
  color: #000 !important;
} */

/* 📱 Mobil Uyum (Ekran 480px ve altı) */
@media (max-width: 480px) {
  .adisyo-modal-content {
    padding: 20px;
    width: 90%;
  }

  .adisyo-btn {
    width: 100%;
    max-width: 100%;
    margin: 8px 0;
    font-size: 15px;
  }

  .adisyo-modal-content h2 {
    font-size: 18px;
  }
}
