/* ═══════════════════════════════════════════════
   ARAÇ KARTI
═══════════════════════════════════════════════ */
.arac-kart {
  border: none !important;
  border-radius: 1.25rem !important;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04) !important;
  transition: box-shadow .3s, transform .3s;
  background: var(--bs-body-bg);
}
.arac-kart:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,.11), 0 2px 6px rgba(0,0,0,.05) !important;
}
.arac-kart hr {
  border-color: #f1f5f9;
  opacity: 1;
}
[data-bs-theme=dark] .arac-kart hr { border-color: rgba(255,255,255,.07); }

/* ═══════════════════════════════════════════════
   GÖRSEL GALERİ
═══════════════════════════════════════════════ */
.arac-gorsel-kolon {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background: #f1f5f9;
  cursor: grab;
  user-select: none;
}
.arac-gorsel-kolon:active { cursor: grabbing; }

/* Alt gradient — nokta indikatörler için arka plan */
.arac-gorsel-kolon::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
  z-index: 3;
  pointer-events: none;
}

/* Kayan track */
.gorsel-sart {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.gorsel-slide {
  flex: 0 0 100%;
  background: center/cover no-repeat #e2e8f0;
}

/* Ok butonları */
.gorsel-ok {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1e293b;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  padding: 0;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.gorsel-ok:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.gorsel-ok.sol  { left: 12px; }
.gorsel-ok.sag  { right: 12px; }
.gorsel-ok.aktif { display: flex; }

/* Nokta indikatörler */
.gorsel-noktalar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 6;
}
.gorsel-nokta {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .25s, width .25s;
}
.gorsel-nokta.aktif {
  background: #fff;
  width: 20px;
}

/* Boş görsel */
.bos-gorsel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kategori etiketi */
.arac-kategori-etiket {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 6;
  background: linear-gradient(135deg, rgba(15,23,42,.88), rgba(30,41,59,.78));
  color: #e2e8f0;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════
   BAŞLIK & KAPASİTE
═══════════════════════════════════════════════ */
.arac-baslik-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
}
.arac-baslik-wrap h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bs-heading-color);
  margin: 0;
  line-height: 1.2;
}
.arac-baslik-alti {
  width: 32px; height: 3px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-primary-border-subtle));
  border-radius: 2px;
  margin-top: 6px;
}
.kapasite-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 5px 11px;
  font-size: .72rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
}
[data-bs-theme=dark] .kapasite-pill {
  background: rgba(255,255,255,.08);
  color: #94a3b8;
}

/* ═══════════════════════════════════════════════
   ÖZELLİKLER
═══════════════════════════════════════════════ */
.ozellik-list {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.ozellik-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .71rem;
  font-weight: 500;
  color: #475569;
}
[data-bs-theme=dark] .ozellik-badge {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: #94a3b8;
}
.ozellik-badge img { width: 13px; height: 13px; object-fit: contain; }
.ozellik-badge i   { font-size: 12px; }

/* ═══════════════════════════════════════════════
   HİZMET LİSTESİ
═══════════════════════════════════════════════ */
.hizmet-listesi {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}
[data-bs-theme=dark] .hizmet-listesi {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.07);
}
.hizmet-oge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  flex: 1 1 0;
  min-width: 0;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
[data-bs-theme=dark] .hizmet-oge { border-color: rgba(255,255,255,.07); }
.hizmet-oge:nth-child(2n) { border-right: none; }
@media (min-width: 576px) {
  .hizmet-oge { flex: 1 1 calc(50% - 1px); }
  .hizmet-oge:nth-child(2n) { border-right: none; }
  .hizmet-oge:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 992px) {
  .hizmet-oge { flex: 1 1 0; border-bottom: none; }
  .hizmet-oge:nth-child(2n) { border-right: 1px solid #f1f5f9; }
  [data-bs-theme=dark] .hizmet-oge:nth-child(2n) { border-right-color: rgba(255,255,255,.07); }
  .hizmet-oge:last-child { border-right: none; }
}
.hizmet-oge i    { font-size: .9rem; color: var(--bs-primary); flex-shrink: 0; }
.hizmet-oge span { font-size: .69rem; font-weight: 600; color: #475569; line-height: 1.2; }
[data-bs-theme=dark] .hizmet-oge span { color: #94a3b8; }

/* ═══════════════════════════════════════════════
   FİYAT BÖLÜMÜ
═══════════════════════════════════════════════ */
.fiyat-ust {
  display: flex;
  align-items: center;
  width: 100%;
}
.fiyat-ust-metin {
  font-size: .72rem;
  color: var(--bs-secondary-color);
}
.toplam-uyari {
  font-size: .71rem;
  font-weight: 600;
  color: var(--bs-danger);
  margin-left: auto;
}

/* Para birimi butonları */
.para-rezervasyon-satir {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: .4rem;
}
.para-btn {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e2e8f0;
  background: var(--bs-body-bg);
  border-radius: 8px;
  padding: 11px 8px;
  cursor: pointer;
  gap: 3px;
  outline: none;
  text-align: center;
  transition: border-color .15s, background .15s, box-shadow .15s;
  overflow: visible;
}
[data-bs-theme=dark] .para-btn { border-color: rgba(255,255,255,.1); }
.para-btn:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}
[data-bs-theme=dark] .para-btn:hover { background: rgba(255,255,255,.05); }
.para-btn.secili {
  border-color: #22c55e;
  border-width: 2px;
  background: #f0fdf4;
  box-shadow: none;
}
[data-bs-theme=dark] .para-btn.secili {
  border-color: #22c55e;
  background: rgba(34,197,94,.08);
}

/* Para butonu tooltip */
.para-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: .67rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  z-index: 50;
}
.para-btn:hover::after { opacity: 1; }

/* Para butonu içerik elemanları */
.pb-kod {
  font-size: .6rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
}
.para-btn.secili .pb-kod { color: #16a34a; }

.pb-fiyat {
  font-size: .95rem;
  font-weight: 700;
  color: var(--bs-heading-color);
  line-height: 1.1;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.para-btn.secili .pb-fiyat { color: #15803d; }

.pb-eski {
  font-size: .64rem;
  color: #94a3b8;
  text-decoration: line-through;
  line-height: 1;
}
.para-btn.secili .pb-eski { color: rgba(255,255,255,.45); }

/* ═══════════════════════════════════════════════
   REZERVASYON BUTONU
═══════════════════════════════════════════════ */
.rezervasyon-btn {
  flex: 0 0 auto;
  align-self: stretch;
  margin-bottom: 0 !important;
  border-radius: 8px !important;
  padding: 0 1rem !important;
  font-weight: 700 !important;
  font-size: .8rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: .45rem;
  text-align: left;
  background: var(--bs-primary) !important;
  color: #fff !important;
  border: none !important;
  letter-spacing: .01em;
  box-shadow: 0 4px 16px rgba(81,67,217,.35);
  transition: background .2s, box-shadow .2s, transform .12s;
}
.rezervasyon-btn:hover {
  background: #4136ae !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(81,67,217,.45);
}
.rezervasyon-btn:active { transform: scale(.97); }

.rez-text {
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  width: 90px;
  line-height: 1.3;
}
.rez-ok { transition: transform .2s; flex-shrink: 0; }
.rezervasyon-btn:hover .rez-ok { transform: translateX(3px); }

@media (max-width: 575px) {
  .para-rezervasyon-satir { flex-wrap: wrap; }
  .rezervasyon-btn {
    flex: 0 0 100% !important;
    justify-content: center !important;
    padding: .75rem 1rem !important;
    align-self: auto;
  }
  .rez-text { width: auto; white-space: nowrap; }
}
