/* Ülke detay — Next.js DetailPage ile aynı yapı */
.vgz-detail-page {
  min-height: 100vh;
  background: #fafafa;
  overflow-x: hidden;
}

.vgz-detail-hero {
  position: relative;
  height: clamp(380px, 52vw, 580px);
  overflow: hidden;
  background: #0f172a;
}

.vgz-detail-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vgz-detail-hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
}

.vgz-detail-hero__back {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 20px;
  padding: 8px 18px 8px 12px;
  color: #1a2332;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.vgz-detail-hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(28px, 4vw, 64px) clamp(16px, 4vw, 48px) clamp(28px, 3vw, 48px);
}

.vgz-detail-hero__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.vgz-detail-hero__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.vgz-detail-hero__flag {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.vgz-detail-hero__flag img {
  width: 80px;
  height: 54px;
  object-fit: cover;
  display: block;
}

.vgz-detail-hero__emoji {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.vgz-detail-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.vgz-detail-hero__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.vgz-detail-hero__ozet {
  font-size: clamp(13px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.vgz-detail-hero__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vgz-detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.vgz-detail-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.vgz-detail-breadcrumb__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 48px);
}

.vgz-detail-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.vgz-detail-breadcrumb a,
.vgz-detail-breadcrumb span {
  font-size: 12px;
  font-weight: 600;
}

.vgz-detail-breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.vgz-detail-breadcrumb a:hover {
  color: #1e40af;
}

.vgz-detail-breadcrumb .is-current {
  font-weight: 700;
  color: #1e293b;
}

.vgz-detail-breadcrumb .sep {
  color: #cbd5e1;
  font-size: 12px;
}

.vgz-detail-statstrip {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.vgz-detail-statstrip__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.vgz-stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.vgz-stat-strip-cell {
  padding: 14px 6px;
  text-align: center;
}

.vgz-stat-strip-cell:not(:last-child) {
  border-right: 1px solid #f1f5f9;
}

.vgz-stat-strip-cell__icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.vgz-stat-strip-cell__label {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
}

.vgz-stat-strip-cell__value {
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
}

@media (max-width: 700px) {
  .vgz-stat-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .vgz-stat-strip-cell:nth-child(4n) {
    border-right: none;
  }
  .vgz-stat-strip-cell:nth-child(n + 5) {
    border-top: 1px solid #f1f5f9;
  }
}

.vgz-detail-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px clamp(12px, 3vw, 24px) 60px;
}

.vgz-detail-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.vgz-detail-card--pad {
  padding: 24px;
}

.vgz-detail-card__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.vgz-detail-card__body {
  padding: 0 24px 24px;
}

.vgz-detail-card__body.is-collapsed {
  display: none;
}

.vgz-detail-eyebrow {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.vgz-detail-h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
}

.vgz-detail-lead {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vgz-detail-warning {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 18px;
  display: flex;
  gap: 11px;
}

.vgz-detail-warning strong {
  display: block;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 3px;
}

.vgz-detail-warning p {
  font-size: 13px;
  color: #ef4444;
  line-height: 1.6;
  margin: 0;
}

.vgz-gezi-intro {
  font-size: 14px;
  line-height: 1.8;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 0;
}

.vgz-gezi-intro.is-open {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.vgz-gezi-extra.is-hidden {
  display: none;
}

.vgz-gezi-more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.vgz-gezi-extra p,
.vgz-gezi-bolum p {
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.vgz-gezi-bolum h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 8px;
}

.vgz-month-chart {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.vgz-month-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  margin-bottom: 14px;
}

.vgz-month-cell {
  text-align: center;
}

.vgz-month-cell__temp {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1;
}

.vgz-month-cell__bar {
  width: 100%;
  height: 9px;
  border-radius: 4px;
  margin-bottom: 7px;
}

.vgz-month-cell__name {
  font-size: 13px;
  font-weight: 600;
}

.vgz-month-cell.is-best .vgz-month-cell__temp,
.vgz-month-cell.is-best .vgz-month-cell__name {
  color: #16a34a;
  font-weight: 800;
}

.vgz-month-cell.is-good .vgz-month-cell__temp,
.vgz-month-cell.is-good .vgz-month-cell__name {
  color: #d97706;
  font-weight: 800;
}

.vgz-month-cell.is-best .vgz-month-cell__bar {
  background: #16a34a;
}

.vgz-month-cell.is-good .vgz-month-cell__bar {
  background: #d97706;
}

.vgz-month-cell.is-other .vgz-month-cell__temp,
.vgz-month-cell.is-other .vgz-month-cell__name {
  color: #cbd5e1;
}

.vgz-month-cell.is-other .vgz-month-cell__bar {
  background: #e2e8f0;
}

.vgz-month-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #475569;
}

.vgz-month-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.vgz-month-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
}

.vgz-flight-route {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.vgz-flight-route__end {
  text-align: center;
  padding: 16px 24px;
}

.vgz-flight-route__code {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.vgz-flight-route__city {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
  font-weight: 500;
}

.vgz-flight-route__mid {
  flex: 1;
  text-align: center;
  position: relative;
}

.vgz-flight-route__mid::before {
  content: '';
  border-top: 1.5px dashed #cbd5e1;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.vgz-flight-route__sure {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #f8fafc;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
}

.vgz-flight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.vgz-flight-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
}

.vgz-flight-box__label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.vgz-flight-box__price {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 12px;
}

.vgz-airline-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
  margin: 2px;
}

.vgz-airline-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.vgz-budget-slider-wrap {
  background: linear-gradient(135deg, #f0fdf4, #eff6ff);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 24px;
  border: 1px solid #e0eaff;
}

.vgz-budget-amount {
  text-align: center;
  margin-bottom: 16px;
}

.vgz-budget-amount__label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.vgz-budget-amount__value {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.vgz-budget-range {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
  margin-bottom: 8px;
}

.vgz-budget-range::-webkit-slider-thumb {
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vgz-tier-color, #2563eb);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.4);
  border: 3px solid #fff;
}

.vgz-budget-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.vgz-budget-day-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
}

.vgz-budget-day-card.is-active {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.vgz-col-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.vgz-col-big-card {
  border-radius: 16px;
  padding: 20px;
}

.vgz-col-rows {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.vgz-col-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid #f8fafc;
}

.vgz-col-banner {
  background: linear-gradient(135deg, #1e3a5f, #1e40af);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.vgz-col-banner__amount {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vgz-practical-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.vgz-practical-item__label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 4px;
}

.vgz-practical-item__val {
  font-size: 14px;
  color: #1e293b;
  line-height: 1.6;
  font-weight: 500;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.vgz-place-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.vgz-place-card__head {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}

.vgz-place-card__body {
  padding: 12px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.vgz-food-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid #f1f5f9;
}

.vgz-restaurant-link {
  display: flex;
  gap: 16px;
  border-radius: 16px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s;
}

.vgz-restaurant-link:hover {
  transform: translateY(-2px);
}

.vgz-detail-faq {
  background: #fafafa;
  padding: 48px clamp(16px, 4vw, 48px) 52px;
  border-top: 1px solid #f1f5f9;
}

.vgz-detail-faq__inner {
  max-width: 880px;
  margin: 0 auto;
}

.vgz-detail-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.vgz-detail-section-head::before {
  content: '';
  width: 4px;
  height: 28px;
  border-radius: 4px;
  flex-shrink: 0;
}

.vgz-detail-section-head--purple::before {
  background: #7c3aed;
}

.vgz-detail-section-head--blue::before {
  background: #3b82f6;
}

.vgz-faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 4px;
}

.vgz-faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: #1e293b;
  line-height: 1.4;
}

.vgz-faq-item__icon {
  color: #94a3b8;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.vgz-faq-item.is-open .vgz-faq-item__icon {
  transform: rotate(45deg);
}

.vgz-faq-item__a {
  display: none;
  padding: 0 22px 20px;
  border-top: 1px solid #f1f5f9;
}

.vgz-faq-item.is-open .vgz-faq-item__a {
  display: block;
}

.vgz-faq-item__a p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-top: 14px;
  font-weight: 500;
}

.vgz-detail-similar {
  background: #fff;
  padding: 48px clamp(16px, 4vw, 48px) 52px;
  border-top: 1px solid #f1f5f9;
}

.vgz-detail-similar__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.vgz-similar-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  min-width: 150px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
}

.vgz-toggle-badge {
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
  flex-shrink: 0;
}

.vgz-toggle-badge--green {
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.vgz-toggle-badge--purple {
  color: #7c3aed;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
}

.vgz-toggle-badge--gray {
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

@media (max-width: 700px) {
  .practical-grid,
  .vgz-flight-grid,
  .vgz-col-big {
    grid-template-columns: 1fr;
  }
  .places-grid {
    grid-template-columns: 1fr;
  }
  .food-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
