/* FOOTER GENEL YAPISI */
.site-footer {
  position: relative;
  background-color: transparent;
  margin-top: 40px;
}

.footer-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/* FOOTER ÜSTÜ DEKORATİF DALGA (WAVE DIVIDER) */
.footer-wave-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
  background: transparent;
}

.footer-wave-svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
}

@media (max-width: 768px) {
  .footer-wave-svg {
    height: 48px;
  }
}

.footer-wave-svg .wave-accent {
  fill: #4C233C;
  opacity: 0.45;
}

.footer-wave-svg .wave-main {
  fill: #1C1D21;
}

/* RANDEVU KARTI */
.newsletter-card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto -95px auto;
  z-index: 10;
  background-color: #4C233C;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.035) 2px,
    transparent 2px,
    transparent 6px
  );
  border-radius: 24px;
  padding: 68px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.newsletter-info {
  color: #ffffff;
}

.newsletter-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #EBD8B8;
  display: block;
  margin-bottom: 14px;
}

.newsletter-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
}

.newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 50px !important;
}

.newsletter-input-wrapper .input-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #777777;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 2;
}

.newsletter-input {
  width: 320px;
  padding: 18px 24px 18px 50px;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
  box-sizing: border-box;
}

/* Tarayıcı Otomatik Doldurma (Autofill / Autocomplete) Mavi/Sarı Arkaplanını Engelleme */
.newsletter-input:-webkit-autofill,
.newsletter-input:-webkit-autofill:hover,
.newsletter-input:-webkit-autofill:focus,
.newsletter-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #333333 !important;
  transition: background-color 5000s ease-in-out 0s;
  border-radius: 50px !important;
}

.newsletter-input:disabled {
  background-color: #ffffff !important;
  color: #4C233C !important;
  font-weight: 600;
  cursor: pointer !important;
  opacity: 1;
  letter-spacing: 0.3px;
  border-radius: 50px !important;
}

.newsletter-input:disabled:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #4C233C !important;
  border-radius: 50px !important;
}

.newsletter-input-wrapper:has(input:disabled) {
  cursor: pointer;
  border-radius: 50px !important;
}

.newsletter-input-wrapper:has(input:disabled) .input-icon {
  color: #4C233C;
}

.newsletter-input-wrapper:focus-within .input-icon {
  color: #4C233C;
}

.newsletter-input::placeholder {
  color: #777777;
}

/* HATA ANIMASYONU — Numara Girilmediğinde */
@keyframes shake-input {
  0%   { transform: translateX(0); }
  15%  { transform: translateX(-8px); }
  30%  { transform: translateX(8px); }
  45%  { transform: translateX(-6px); }
  60%  { transform: translateX(6px); }
  75%  { transform: translateX(-3px); }
  90%  { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

.newsletter-input-wrapper.input-shake {
  animation: shake-input 0.5s ease;
}

.newsletter-input-wrapper.input-error .newsletter-input {
  border-color: #e05252 !important;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.25) !important;
}

.newsletter-input-wrapper.input-error .input-icon {
  color: #e05252 !important;
}

.newsletter-input-error-msg {
  position: absolute;
  bottom: -26px;
  left: 50px;
  font-size: 11.5px;
  color: #e05252;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.newsletter-input-wrapper.input-error .newsletter-input-error-msg {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-btn {
  background-color: #EBD8B8;
  color: #2D1826;
  border: none;
  border-radius: 50px;
  padding: 18px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background-color: #f3e4cb;
  transform: translateY(-2px);
}

.newsletter-btn.has-appointment {
  background: linear-gradient(135deg, #4C233C 0%, #321627 100%);
  color: #EBD8B8;
  border: 1px solid rgba(235, 216, 184, 0.4);
  box-shadow: 0 8px 24px rgba(76, 35, 60, 0.35);
}

.newsletter-btn.has-appointment:hover {
  background: linear-gradient(135deg, #5D2B4A 0%, #3D1B30 100%);
  color: #ffffff;
  border-color: #EBD8B8;
  box-shadow: 0 10px 28px rgba(76, 35, 60, 0.45);
}

/* Randevularım Görüntüleme Modalı İptal Butonu (Lüks & Prestijli Tasarım) */
.appointment-cancel-btn {
  width: 100%;
  background: linear-gradient(135deg, #4C233C 0%, #2A1321 100%);
  color: #EBD8B8;
  border: 1px solid rgba(235, 216, 184, 0.35);
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 14px;
  box-shadow: 0 8px 24px rgba(76, 35, 60, 0.25);
  position: relative;
  overflow: hidden;
}

.appointment-cancel-btn i {
  font-size: 14px;
  color: #EBD8B8;
  transition: transform 0.3s ease, color 0.3s ease;
}

.appointment-cancel-btn:hover {
  background: linear-gradient(135deg, #a83232 0%, #7d1f1f 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(168, 50, 50, 0.35);
}

.appointment-cancel-btn:hover i {
  color: #ffffff;
  transform: scale(1.15);
}

.appointment-cancel-btn:active {
  transform: translateY(0);
}

/* ============================================================
   LÜKS RANDEVU TARİH & SAAT SEÇİM MODAL TASARIMI
   ============================================================ */
.appointment-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 19, 22, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.appointment-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.appointment-modal-card {
  background: #ffffff;
  border-radius: 32px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(76, 35, 60, 0.08);
  position: relative;
  transform: translateY(24px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.appointment-modal-overlay.active .appointment-modal-card {
  transform: translateY(0) scale(1);
}

.appointment-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F4F1EA;
  border: 1px solid rgba(76, 35, 60, 0.1);
  color: #4C233C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.appointment-modal-close:hover {
  background: #4C233C;
  color: #ffffff;
  transform: rotate(90deg);
}

.appointment-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.appointment-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(76, 35, 60, 0.08);
  color: #4C233C;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.appointment-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #1C1D21;
  margin-bottom: 8px;
}

.appointment-modal-subtitle {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.5;
}

.appointment-phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FBF8F5;
  border: 1px solid #EAE6E1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #4C233C;
  margin-top: 10px;
}

/* Bölüm Başlıkları */
.appointment-section-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #1C1D21;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.appointment-section-label i {
  color: #4C233C;
}

/* Tarih Seçim Hapları */
.appointment-dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.appointment-date-btn {
  background: #FBF8F5;
  border: 1.5px solid #EAE6E1;
  border-radius: 18px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.appointment-date-btn:hover {
  border-color: #4C233C;
  background: #ffffff;
  transform: translateY(-2px);
}

.appointment-date-btn.active {
  background: #4C233C;
  border-color: #4C233C;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(76, 35, 60, 0.25);
}

.date-btn-day {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888888;
}

.appointment-date-btn.active .date-btn-day {
  color: #EBD8B8;
}

.date-btn-num {
  font-size: 18px;
  font-weight: 700;
  color: #1C1D21;
}

.appointment-date-btn.active .date-btn-num {
  color: #ffffff;
}

.date-btn-month {
  font-size: 11px;
  font-weight: 500;
  color: #777777;
}

.appointment-date-btn.active .date-btn-month {
  color: rgba(255, 255, 255, 0.85);
}

/* Saat Seçim Hapları */
.appointment-hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.appointment-hour-btn {
  background: #FBF8F5;
  border: 1.5px solid #EAE6E1;
  border-radius: 14px;
  padding: 10px 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1C1D21;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.appointment-hour-btn:hover {
  border-color: #4C233C;
  background: #ffffff;
  transform: translateY(-2px);
}

.appointment-hour-btn.active {
  background: #4C233C;
  border-color: #4C233C;
  color: #EBD8B8;
  box-shadow: 0 6px 18px rgba(76, 35, 60, 0.2);
}

/* Randevuyu Onayla Butonu */
.appointment-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #4C233C 0%, #2A1321 100%);
  color: #EBD8B8;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(76, 35, 60, 0.25);
}

.appointment-submit-btn:hover {
  background: linear-gradient(135deg, #5D2B4A 0%, #381A2D 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(76, 35, 60, 0.35);
  color: #ffffff;
}

/* Başarılı Randevu Ekranı */
.appointment-success-box {
  text-align: center;
  padding: 20px 10px;
  display: none;
}

.appointment-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F4ECE1;
  color: #4C233C;
  border: 2px solid #EBD8B8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(76, 35, 60, 0.15);
}

.appointment-success-title {
  font-size: 22px;
  font-weight: 700;
  color: #1C1D21;
  margin-bottom: 10px;
}

.appointment-success-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.appointment-summary-card {
  background: #FBF8F5;
  border: 1px solid #EAE6E1;
  border-radius: 20px;
  padding: 18px 22px;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
}

.appointment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.appointment-summary-label {
  color: #888888;
  font-weight: 500;
}

.appointment-summary-val {
  color: #1C1D21;
  font-weight: 600;
}

/* Modal Responsive */
@media (max-width: 600px) {
  .appointment-modal-card {
    padding: 28px 20px;
    border-radius: 26px;
  }
  .appointment-dates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .appointment-hours-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

/* ANA DARK FOOTER BÖLÜMÜ */
.footer-main {
  background-color: #1C1D21;
  color: #9A9CA2;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  left: 40px;
  bottom: 0px;
  width: 270px;
  height: 270px;
  pointer-events: none;
  z-index: 1;
  display: none;
}

@media (min-width: 1201px) {
  .footer-watermark {
    display: block;
  }
}

.footer-watermark img,
.footer-watermark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.12;
}

.logo-icon img,
.logo-icon svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.footer-grid {
  max-width: 1140px;
  margin: 25px auto 60px auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.footer-col {
  flex: 0 0 auto;
  padding: 10px 0;
}

.brand-col {
  max-width: 320px;
}

.footer-heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.brand-description {
  font-size: 14px;
  line-height: 1.7;
  color: #8C8E95;
  margin-bottom: 24px;
  max-width: 340px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #EBD8B8;
  border-color: #EBD8B8;
  color: #2D1826;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #8C8E95;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.footer-links a i {
  font-size: 10px;
  color: #6C6E75;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover i {
  color: #EBD8B8;
}

.footer-bottom {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 13px;
  color: #6C6E75;
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 100%;
  padding-left: 15px;
}

.copyright-link {
  color: #EBD8B8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.copyright-link:hover {
  text-decoration: none;
  color: #ffffff;
}

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
  .newsletter-card {
    width: 90%;
    max-width: 600px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 40px 24px;
    margin: 0 auto -110px auto;
  }
  
  .newsletter-info {
    text-align: center;
  }

  .newsletter-subtitle {
    margin-bottom: 16px;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .newsletter-input-wrapper {
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
  }

  .newsletter-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .newsletter-btn {
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
    justify-content: center;
  }

  .footer-main {
    padding-top: 170px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .brand-col .footer-logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .brand-description {
    text-align: center;
    margin: 0 auto 20px auto;
  }

  .social-links {
    justify-content: center;
    width: 100%;
  }

  .footer-heading {
    text-align: center;
    width: 100%;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-links li {
    text-align: center;
    width: 100%;
  }

  .footer-links a {
    justify-content: center;
    text-align: center;
  }

  .footer-watermark {
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.05;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .newsletter-card {
    padding: 30px 18px;
  }

  .newsletter-title {
    font-size: 22px;
  }

  .footer-bottom p {
    font-size: 11px;
    padding: 0 10px;
  }
}

/* ============================================
   ÖZEL ONAY DİYALOĞU (confirm() yerine)
   ============================================ */
.custom-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 12, 24, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.custom-confirm-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.custom-confirm-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  max-width: 380px;
  width: calc(100% - 40px);
  box-shadow: 0 24px 60px rgba(76, 35, 60, 0.22), 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid rgba(76, 35, 60, 0.1);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s ease, opacity 0.25s ease;
  text-align: center;
}

.custom-confirm-overlay.active .custom-confirm-card {
  transform: translateY(0) scale(1);
}

.custom-confirm-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f7ece4 0%, #fde8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.custom-confirm-icon i {
  font-size: 22px;
  color: #c0392b;
}

.custom-confirm-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #2D1826;
  margin: 0 0 10px;
  line-height: 1.4;
}

.custom-confirm-message {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: #666666;
  margin: 0 0 28px;
  line-height: 1.6;
}

.custom-confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.custom-confirm-btn-cancel {
  flex: 1;
  padding: 13px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(76, 35, 60, 0.2);
  background: transparent;
  color: #4C233C;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-confirm-btn-cancel:hover {
  background: rgba(76, 35, 60, 0.06);
  border-color: #4C233C;
}

.custom-confirm-btn-ok {
  flex: 1;
  padding: 13px 20px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #c0392b 0%, #922b21 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.35);
}

.custom-confirm-btn-ok:hover {
  background: linear-gradient(135deg, #a93226 0%, #7b241c 100%);
  box-shadow: 0 6px 18px rgba(192, 57, 43, 0.45);
  transform: translateY(-1px);
}

/* ============================================
   ÖZEL TOAST BİLDİRİMİ (alert() yerine)
   ============================================ */
.custom-toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(24px) scale(0.96);
  background: #FFFFFF;
  color: #18181B;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 22px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: auto;
  min-width: 200px;
  max-width: 90vw;
  border: 1px solid #E4E4E7;
}

.custom-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: all;
}

.custom-toast-icon {
  width: 28px;
  height: 28px;
  background: #F4F4F5;
  border: 1px solid #E4E4E7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-toast-icon i {
  font-size: 13px;
  color: #18181B;
}

.custom-toast-text {
  flex: 0 0 auto;
  line-height: 1.4;
  text-align: center;
  color: #18181B;
  letter-spacing: 0.2px;
}
