/* ===== DETAIL PAGE ===== */

.detail-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin-top: 100px;
}
.detail-page { padding: 30px 0; }
@media (max-width: 1024px) {
  .detail-breadcrumb { margin-top: 75px; padding: 12px 0; }
  .detail-page { padding: 20px 0; }
}
@media (max-width: 768px) {
  .detail-breadcrumb { margin-top: 70px; padding: 10px 0; }
  .detail-page { padding: 10px 0; }
  .detail-page-title { font-size: 15px; }
}
.breadcrumb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.detail-page-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb-nav a { color: var(--red); }
.breadcrumb-nav i { font-size: 10px; }

/* Steps bar */
.detail-steps {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 12px 0;
}
@media (max-width: 768px) {
  .detail-steps { padding: 8px 0; }
}
.detail-steps-list {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.detail-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}
.detail-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.detail-step.active { color: var(--red); }
.detail-step.active span { background: var(--red); color: var(--white); }
.detail-step-arrow { color: var(--border); font-size: 12px; }

/* Main layout */
.detail-page { padding: 32px 0 60px; background: var(--gray-light); min-height: 80vh; }
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* Vehicle Cards */
.vehicles-section { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.detail-vehicle-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: 380px 1fr;
  transition: .2s;
  align-items: stretch;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 100%;
}
.detail-vehicle-card:hover { border-color: var(--red); box-shadow: var(--shadow); }

@media (max-width: 992px) {
  .detail-vehicle-card { grid-template-columns: 1fr; }
  .dvc-swiper { height: 250px !important; width: 100% !important; max-width: 100%; }
}

.dvc-swiper { width: 380px; max-width: 100%; height: 100%; position: relative; background: #eee; }
.dvc-swiper .swiper-wrapper, .dvc-swiper .swiper-slide { height: 100%; }
.dvc-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }


/* Swiper Nav in Cards */
.dvc-swiper .swiper-button-next, .dvc-swiper .swiper-button-prev { color: var(--red); transform: scale(0.6); background: transparent; padding: 0; }
.dvc-swiper .swiper-button-next:hover, .dvc-swiper .swiper-button-prev:hover { color: #a00; }

.dvc-body { padding: 25px; display: flex; flex-direction: column; gap: 18px; width: 100%; box-sizing: border-box; }
.dvc-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 6px; }

.dvc-features { display: flex; gap: 12px; align-items: center; color: #666; font-size: 13px; margin-bottom: 10px; flex-wrap: wrap; }
.dvc-features > div { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; min-width: 0; }

/* Para birimi kutulari - inline-block ile guvenilir layout */
.dvc-currency-boxes {
  display: block;
  width: 100%;
  font-size: 0;
  margin-top: 8px;
  box-sizing: border-box;
}
.currency-box {
  display: inline-block;
  vertical-align: top;
  width: calc(25% - 5px);
  margin-right: 5px;
  box-sizing: border-box;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  transition: .2s;
  min-height: 65px;
}
.currency-box:last-of-type { margin-right: 0; }
.currency-box strong { font-size: 14px; color: #111; display: block; }
.currency-box s { font-size: 11px; color: #999; display: block; }
.currency-box span { font-size: 10px; display: block; }
.currency-box.active { border-color: #22c55e; background: rgba(34,197,94,0.05); }
.currency-box.active strong { color: #22c55e; }

.dvc-footer {
  display: block;
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  box-sizing: border-box;
}

.btn-book-now {
  background: var(--red);
  color: #fff !important;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  transition: .2s;
  margin-top: 10px;
  box-sizing: border-box;
}

.currency-tabs { display: flex; gap: 4px; margin-bottom: 6px; }
.cur-btn {
  padding: 4px 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  font-family: var(--font);
}
.cur-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }

.dvc-price { display: flex; align-items: baseline; gap: 8px; }
.price-old { font-size: 14px; color: var(--gray); text-decoration: line-through; }
.price-now { font-size: 26px; font-weight: 800; color: var(--red); }

.btn-book-now {
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
  white-space: nowrap;
}
.btn-book-now:hover { background: var(--red-dark); transform: translateY(-2px); }

/* Tabs */
.detail-tabs-section {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-bottom: 24px;
}
.detail-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  background: var(--gray-light);
}
.detail-tab {
  flex: 1;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: .2s;
  font-family: var(--font);
}
.detail-tab:hover { color: var(--red); }
.detail-tab.active { color: var(--red); border-bottom-color: var(--red); background: var(--white); }

.detail-tab-content { display: none; padding: 28px; }
.detail-tab-content.active { display: block; }

.detail-description { font-size: 15px; color: var(--dark2); line-height: 1.9; }

.inc-not-inc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.inc-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inc-col h4 i { color: #22c55e; }
.inc-col.not-inc h4 i { color: var(--red); }
.inc-col ul { display: flex; flex-direction: column; gap: 8px; }
.inc-col ul li {
  font-size: 13px;
  color: var(--dark2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.inc-col ul li i { color: #22c55e; font-size: 12px; }
.inc-col.not-inc ul li i { color: var(--red); }

/* Meeting Point */
.meeting-point { display: flex; flex-direction: column; gap: 20px; }
.meeting-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--gray-light);
  padding: 20px;
  border-radius: 10px;
}
.meeting-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.meeting-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.meeting-info p { font-size: 13px; color: var(--gray); margin-bottom: 4px; }

/* Reviews */
.reviews-summary { margin-bottom: 24px; }
.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-score strong { font-size: 48px; font-weight: 800; color: var(--dark); }
.stars { color: #f59e0b; font-size: 18px; display: flex; gap: 2px; }
.reviews-score span { font-size: 14px; color: var(--gray); }

.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-header strong { display: block; font-size: 14px; }
.review-header span { font-size: 12px; color: var(--gray); }
.review-stars { margin-left: auto; color: #f59e0b; font-size: 13px; display: flex; gap: 2px; }
.review-card p { font-size: 14px; color: var(--dark2); line-height: 1.7; }

/* Contact Cards */
.detail-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.dcc-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--border);
}
.dcc-card > i {
  font-size: 28px;
  color: var(--red);
  width: 48px;
  text-align: center;
  flex-shrink: 0;
}
.dcc-card small { font-size: 11px; color: var(--gray); text-transform: uppercase; display: block; margin-bottom: 4px; }
.dcc-card a, .dcc-card span { font-size: 13px; font-weight: 700; color: var(--dark); }
.dcc-card a:hover { color: var(--red); }

/* ===== SIDEBAR WIDGET ===== */
.detail-sidebar { 
  position: sticky; 
  top: 130px; 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.detail-sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.dsw-header {
  background: var(--red);
  padding: 18px 22px;
  color: var(--white);
}
.dsw-header h3 { font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 8px; }

.dsw-price-display {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--gray-light);
}
.dsw-from { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; }
.dsw-price strong { font-size: 32px; font-weight: 800; color: var(--red); display: block; }
.dsw-meta { display: flex; gap: 16px; margin-top: 8px; font-size: 12px; color: var(--gray); }
.dsw-meta span { display: flex; align-items: center; gap: 4px; }
.dsw-meta i { color: var(--red); }

.dsw-form { padding: 18px 22px; display: flex; flex-direction: column; gap: 12px; }
.dsw-field { display: flex; flex-direction: column; gap: 5px; }
.dsw-field label { font-size: 11px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; display: flex; align-items: center; gap: 5px; }
.dsw-field label i { color: var(--red); }
.dsw-field input, .dsw-field select {
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: .2s;
}
.dsw-field input:focus, .dsw-field select:focus { border-color: var(--red); }

.dsw-return-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.discount-badge {
  background: #22c55e;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.dsw-summary {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dsw-sum-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--dark2); }
.dsw-sum-row.total { font-weight: 700; padding-top: 6px; border-top: 1px solid var(--border); margin-top: 4px; font-size: 15px; }
.dsw-sum-row.total strong { color: var(--red); font-size: 18px; }

.dsw-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s;
  font-family: var(--font);
  width: 100%;
}
.dsw-submit:hover { background: var(--red-dark); }

.dsw-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}
.dsw-guarantees div {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 8px 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dsw-guarantees i { color: var(--red); font-size: 16px; }

.detail-sidebar-info {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  border: 1.5px solid var(--border);
}
.detail-sidebar-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
}
.detail-sidebar-info h4 i { color: var(--red); }
.detail-sidebar-info ul { display: flex; flex-direction: column; gap: 8px; }
.detail-sidebar-info li { font-size: 13px; color: var(--dark2); display: flex; align-items: center; gap: 8px; }
.detail-sidebar-info li i { color: #22c55e; font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  /* Contact cards 2-col on tablet */
  .detail-contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .detail-vehicle-card { grid-template-columns: 1fr; }
  .dvc-swiper .swiper-slide img { height: 200px; }
  /* features 2-col */
  .dvc-features { grid-template-columns: 1fr 1fr; }
  /* contact cards 2-col */
  .detail-contact-cards { grid-template-columns: 1fr 1fr; }
  /* inc/not-inc stays 2-col */
  .inc-not-inc { grid-template-columns: 1fr 1fr; }
  /* Guarantees 3-col */
  .dsw-guarantees { grid-template-columns: 1fr 1fr 1fr; }
  /* Breadcrumb */
  .breadcrumb-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  /* Steps compact */
  .detail-steps-list { gap: 4px; }
  .detail-step { font-size: 11px; gap: 5px; }
  .detail-step span { width: 24px; height: 24px; font-size: 11px; }
}
@media (max-width: 768px) {
  .dvc-header h3 { font-size: 15px !important; max-width: 100% !important; }
  .dvc-features { gap: 8px; font-size: 11px; }
  .currency-box { width: calc(25% - 4px); margin-right: 4px; padding: 8px 3px; }
  .currency-box strong { font-size: 12px; }
  .currency-box s { font-size: 10px; }
}

@media (max-width: 480px) {
  .detail-page { padding: 12px 0 40px; }
  .inc-not-inc { grid-template-columns: 1fr; }
  .detail-contact-cards { grid-template-columns: 1fr; }
  .detail-tab { padding: 10px 6px; font-size: 11px; }

  /* Vehicle Card */
  .detail-vehicle-card { display: block !important; }
  .dvc-swiper { height: 200px !important; width: 100% !important; display: block; }
  .dvc-body { padding: 12px; gap: 10px; }
  .dvc-header { flex-direction: column; gap: 4px; }
  .dvc-header h3 { font-size: 14px !important; max-width: 100% !important; }

  /* Currency boxes: 4 kutucuk, daha kompakt */
  .currency-box { width: calc(25% - 3px); margin-right: 3px; padding: 6px 2px; min-height: 60px; }
  .currency-box strong { font-size: 11px; }
  .currency-box s { font-size: 9px; }

  /* Sidebar */
  .dsw-header { padding: 10px 16px; }
  .dsw-header h3 { font-size: 14px; }
  .dsw-price-display { padding: 10px 16px; }

  /* Tours */
  .tours-grid { display: grid; grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
}


