/* Araç Kiralama - Özel stiller */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --brand-orange: #ff5000;
  --brand-black: #121212;
  --brand-gray: #e8e8e8;
  --background: #ffffff;
  --foreground: #171717;
  --border: #e0e0e0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.text-brand-orange { color: var(--brand-orange); }
.text-brand-black { color: var(--brand-black); }
.bg-brand-orange { background-color: var(--brand-orange); }
.bg-brand-black { background-color: var(--brand-black); }
.border-brand-orange { border-color: var(--brand-orange); }

/* ── Top bar marquee ── */
.top-bar {
  background: var(--brand-black);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: .5rem 0;
  overflow: hidden;
  max-width: 100%;
}
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
@media (max-width: 767px) {
  .marquee {
    height: 1.25rem;
  }
  .marquee-track {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.marquee-track span {
  padding: 0 2.5rem;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.deal-badge { transform: skewX(-12deg); }
.deal-badge > * { transform: skewX(12deg); }
.text-balance { text-wrap: balance; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.left-6 { left: 1.5rem; }
.top-7 { top: 1.75rem; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-30 { z-index: 30; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.h-9 { height: 2.25rem; }
.h-16 { height: 4rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.w-9 { width: 2.25rem; }
.w-320 { width: 320px; }
.max-w-85vw { max-width: 85vw; }
.max-w-1040 { max-width: 1040px; }
.max-w-1280 { max-width: 1280px; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-5 { margin-top: 1.25rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-1 { padding-left: .25rem; padding-right: .25rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-2 { padding-top: .5rem; }
.pb-16 { padding-bottom: 4rem; }

.overflow-hidden { overflow: hidden; }
.rounded-md { border-radius: .375rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid var(--border); }
.border-2 { border: 2px solid; }
.border-b { border-bottom: 1px solid var(--border); }
.border-b-4 { border-bottom: 4px solid var(--brand-orange); }
.border-white { border-color: #fff; }
.border-neutral-100 { border-color: #f5f5f5; }
.border-neutral-200 { border-color: #e5e5e5; }

.text-white { color: #fff; }
.text-neutral-400 { color: #a3a3a3; }
.text-neutral-500 { color: #737373; }
.text-neutral-700 { color: #404040; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs-tag { font-size: 6.5px; }
.text-11 { font-size: 11px; }
.text-12 { font-size: 12px; }
.text-13 { font-size: 13px; }
.text-14 { font-size: 14px; }
.text-15 { font-size: 15px; }
.text-16 { font-size: 16px; }
.text-17 { font-size: 17px; }
.text-18 { font-size: 18px; }
.text-26 { font-size: 26px; }
.text-28 { font-size: 28px; }
.text-34 { font-size: 34px; }
.text-42 { font-size: 42px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.leading-none { line-height: 1; }
.whitespace-nowrap { white-space: nowrap; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.hidden { display: none !important; }
.select-none { user-select: none; }
.opacity-90 { opacity: .9; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.underline { text-decoration: underline; }
.cursor-pointer { cursor: pointer; }
.transition-all { transition: all .2s ease; }
.transition-colors { transition: color .2s, background-color .2s; }
.transition-transform { transition: transform .7s ease; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.bg-white { background: #fff; }
.bg-white-90 { background: rgba(255,255,255,.9); }
.bg-black-50 { background: rgba(0,0,0,.5); }
.bg-neutral-100 { background: #f5f5f5; }
.bg-neutral-300 { background: #d4d4d4; }
.bg-transparent { background: transparent; }
.min-h-360 { min-height: 360px; }
.min-h-440 { min-height: 440px; }
.min-h-760 { min-height: 760px; }

.place-items-center { place-items: center; }
.shrink-0 { flex-shrink: 0; }
.grid-place { display: grid; place-items: center; }

/* ── Hero section ── */
.hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero-section { min-height: 780px; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.12) 28%,
    transparent 55%
  );
}
.hero-overlay-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.12) 45%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: inherit;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .hero-inner { padding: 0 2rem 3rem; }
}
.booking-area {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: .25rem;
  min-width: 0;
}
.hero-headline {
  margin-top: auto;
  padding-top: 2rem;
  text-align: center;
  position: relative;
}
.hero-title {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(2rem, 5.5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-title-break {
  display: block;
}
.hero-subtitle {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

/* ── Site header ── */
.site-header {
  position: relative;
  z-index: 10;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: .75rem 1rem;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .site-header-inner { padding: 1rem 2rem; }
}
.site-header-left {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  flex: 1 1 auto;
}
.site-header-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}
.site-logo-link {
  min-width: 0;
  max-width: 100%;
  color: #fff;
}
@media (min-width: 640px) {
  .site-header-nav { gap: .5rem; }
}
.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: .5rem;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .2s;
}
.header-icon-btn:hover { background: rgba(255,255,255,.12); }
.header-icon-btn-dark { color: var(--brand-black); }
.header-icon-btn-dark:hover { background: #f5f5f5; }
.header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: .5rem;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: background .2s;
}
.header-nav-link:hover { background: rgba(255,255,255,.12); }
.nav-sm-only { display: inline-flex; }
.nav-sm-only-inline { display: none; }
.nav-md-only { display: none; }
@media (min-width: 640px) {
  .nav-sm-only-inline { display: inline; }
}
@media (min-width: 768px) {
  .nav-sm-only { display: none; }
  .nav-md-only { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 50; }
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e5e5;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}
.mobile-menu-nav a {
  padding: .875rem 1.25rem;
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-black);
}
.mobile-menu-nav a:hover { background: #f5f5f5; }

/* ── Booking widget ── */
.booking-widget {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.booking-widget-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem;
}
.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.booking-manage-link {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.booking-manage-link:hover { color: rgba(255,255,255,.85); }
@media (max-width: 639px) {
  .booking-manage-link {
    width: 100%;
    text-align: right;
  }
}
.booking-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  padding: 1rem;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .booking-card { padding: 1.25rem; }
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  border: 1px solid #e5e5e5;
  border-radius: .75rem;
  padding: .75rem 1rem;
  background: #fff;
  transition: border-color .2s;
}
.booking-field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #737373;
}
.booking-input-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--brand-black);
}
.booking-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-black);
  min-width: 0;
}
.booking-field-grow { flex: 1; min-width: 0; }
.booking-field-date { min-width: 0; }
@media (min-width: 1024px) {
  .booking-field-date { width: 150px; flex-shrink: 0; }
}
.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  border-radius: .75rem;
  padding: 1rem 1.5rem;
  background: var(--brand-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: filter .2s;
  white-space: nowrap;
}
.booking-submit:hover { filter: brightness(.95); }
@media (min-width: 1024px) {
  .booking-submit {
    width: auto;
    min-width: 160px;
    align-self: stretch;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.booking-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid #f0f0f0;
}
.booking-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-black);
}
.booking-age-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-black);
  cursor: pointer;
  padding: .25rem 0;
}
.booking-contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid #f0f0f0;
}
@media (min-width: 768px) {
  .booking-contact-row { grid-template-columns: repeat(3, 1fr); }
}
.booking-contact-row .booking-field input {
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
}
.booking-return-field { margin-top: .75rem; }
.booking-return-field .booking-field { width: 100%; }
.booking-return-field input {
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 500;
}

/* ── Features (hero → content transition) ── */
.features-section {
  position: relative;
  z-index: 2;
  padding: 2rem 0 3rem;
  background: #fafafa;
}
.features-frame-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.features-frame {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand-orange);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  padding: 1.75rem 1.25rem;
  margin-top: -2.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.feature-card {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #eee;
}
.feature-card:last-child {
  border-bottom: none;
}
.feature-card-head {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: .75rem;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  color: var(--brand-black);
}
.feature-card-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-black);
  line-height: 1.3;
}
.feature-card-title {
  margin: .85rem 0 0;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--brand-black);
}
@media (min-width: 768px) {
  .features-frame-wrap { padding: 0 2rem; }
  .features-frame { padding: 2rem 1.5rem; }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-card {
    padding: .5rem 1.75rem;
    border-bottom: none;
    border-right: 1px solid #eee;
  }
  .feature-card:last-child { border-right: none; }
}
@media (min-width: 1024px) {
  .feature-card { padding: .5rem 2.25rem; }
  .feature-card-title { font-size: 1.75rem; }
}
.deal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.3), rgba(0,0,0,.1));
}

.hover-bg-white-10:hover { background: rgba(255,255,255,.1); }
.hover-bg-white:hover { background: #fff; }
.hover-bg-neutral-50:hover { background: #fafafa; }
.hover-bg-neutral-100:hover { background: #f5f5f5; }
.hover-text-white-80:hover { color: rgba(255,255,255,.8); }
.hover-text-brand-black:hover { color: var(--brand-black); }
.hover-brightness:hover { filter: brightness(.95); }
.group:hover .group-hover-scale { transform: scale(1.05); }
.group:hover .group-hover-bg-white { background: #fff; }
.group:hover .group-hover-text-black { color: var(--brand-black); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-logo-mark { display: inline-flex; }
.deal-card { position: relative; }
.deal-card-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  text-decoration: none;
  color: transparent;
}

.focus-within-orange:focus-within { border-color: var(--brand-orange); }
input:focus { outline: none; }

.toggle { position: relative; height: 1.25rem; width: 2.25rem; border-radius: 9999px; border: none; cursor: pointer; background: #d4d4d4; }
.toggle.is-on { background: var(--brand-orange); }
.toggle-knob { position: absolute; top: 2px; left: 2px; height: 1rem; width: 1rem; border-radius: 9999px; background: #fff; transition: transform .2s; }
.toggle.is-on .toggle-knob { transform: translateX(18px); }

.page-hero { background: var(--brand-black); color: #fff; padding: 3rem 0; border-bottom: 4px solid var(--brand-orange); }
.page-content { max-width: 800px; margin: 0 auto; padding: 3rem 1rem 4rem; line-height: 1.7; }
.page-content h2 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.5rem; }
.page-content h3 { margin-top: 1.5rem; margin-bottom: .5rem; }
.page-content ul { padding-left: 1.25rem; }
.page-content .lead { font-size: 1.25rem; font-weight: 500; margin-bottom: 1rem; }
.page-content a { color: var(--brand-orange); text-decoration: underline; }
.page-content a.btn:not(.btn-outline),
.arac-detail-page a.btn:not(.btn-outline) {
  color: #fff;
  text-decoration: none;
}
.page-content a.btn-outline,
.arac-detail-page a.btn-outline {
  color: var(--brand-black);
  text-decoration: none;
}
.page-content a.btn-outline:hover,
.arac-detail-page a.btn-outline:hover {
  color: var(--brand-black);
  background: #f5f5f5;
}

.form-card { background: #fff; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.15); padding: 2rem; max-width: 520px; margin: 0 auto; }
.form-card-brand { display: block; text-align: center; margin-bottom: 1.5rem; color: var(--brand-black); text-decoration: none; }
.form-card-brand:hover { opacity: .9; }
.auth-logo { display: inline-flex; flex-direction: column; align-items: center; text-align: center; color: inherit; }
.auth-logo .text-xs-tag { color: #737373; }
.auth-logo .site-logo-img { margin: 0 auto; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #737373; margin-bottom: .35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid #e5e5e5; border-radius: .75rem; padding: .75rem 1rem; font-size: 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: none; border-radius: .75rem; padding: .75rem 1.5rem; font-weight: 700; cursor: pointer; }
.btn-primary { background: var(--brand-orange); color: #fff; }
.btn-primary:hover { filter: brightness(.95); }
.btn-lg { padding: 1rem 1.5rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-dark { background: var(--brand-black); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--brand-black); color: var(--brand-black); }
.btn-outline:hover { background: #f5f5f5; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.form-actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
}
@media (max-width: 479px) {
  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }
}
.confirmation-code {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: .35rem;
  background: #f5f5f5;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: .95em;
  letter-spacing: .04em;
  user-select: all;
}
.alert { padding: .75rem 1rem; border-radius: .5rem; margin-bottom: 1rem; font-size: 14px; }
.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert-info { background: #e0f2fe; color: #075985; }

.site-footer { background: var(--brand-black); color: #fff; padding: 3rem 0 2rem; }
.site-footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1rem; opacity: .7; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a:hover { color: var(--brand-orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.5rem; font-size: 13px; opacity: .7; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); } .container { padding: 0 2rem; } .md-grid-2 { grid-template-columns: repeat(2, 1fr); } .md-grid-3 { grid-template-columns: repeat(3, 1fr); } .md-flex { display: flex; } .md-px-8 { padding-left: 2rem; padding-right: 2rem; } .md-p-5 { padding: 1.25rem; } .md-p-8 { padding: 2rem; } .md-py-16 { padding-top: 4rem; padding-bottom: 4rem; } .md-text-34 { font-size: 34px; } .md-text-16 { font-size: 16px; } .text-30 { font-size: 30px; } }
@media (min-width: 640px) { .sm-gap-2 { gap: .5rem; } .sm-grid { display: grid; } .sm-inline { display: inline; } .sm-text-6xl { font-size: 3.75rem; line-height: 1; } .sm-text-22 { font-size: 22px; } .sm-block { display: block; } }
@media (min-width: 1024px) { .lg-flex-row { flex-direction: row; } .lg-items-stretch { align-items: stretch; } .lg-w-150 { width: 150px; } .lg-px-10 { padding-left: 2.5rem; padding-right: 2.5rem; } .lg-text-84 { font-size: 84px; } }

.booking-row { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 1024px) { .booking-row { flex-direction: row; align-items: stretch; } }

[data-booking-tab].is-active { background: var(--brand-black) !important; color: #fff !important; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }
[data-booking-tab]:not(.is-active) { background: rgba(255,255,255,.9); color: var(--brand-black); }
[data-booking-tab]:not(.is-active):hover { background: #fff; }

.age-menu { position: absolute; right: 0; top: calc(100% + .5rem); background: #fff; border: 1px solid #e5e5e5; border-radius: .75rem; box-shadow: 0 10px 25px rgba(0,0,0,.1); min-width: 160px; z-index: 20; }
.age-menu button { display: block; width: 100%; text-align: left; padding: .6rem 1rem; border: none; background: none; cursor: pointer; font-size: 14px; }
.age-menu button:hover { background: #f5f5f5; }
.age-wrap { position: relative; }

.admin-body { background: #f4f4f5; min-height: 100vh; margin: 0; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 998; }
.admin-sidebar-backdrop[hidden] { display: none !important; }
.admin-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: var(--brand-black);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    overflow: hidden;
}
.admin-sidebar-brand { padding: 1.25rem 1.25rem 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-sidebar-brand a { color: #fff; text-decoration: none; display: block; }
.admin-sidebar-brand strong { display: block; font-size: 1.1rem; line-height: 1.2; }
.admin-sidebar-brand span { display: block; font-size: 12px; opacity: .65; margin-top: .25rem; }
.admin-sidebar-nav { flex: 1; overflow-y: auto; padding: .75rem 0 1rem; }
.admin-nav-group { margin-bottom: .5rem; }
.admin-nav-label {
    display: block;
    padding: .5rem 1.25rem .35rem;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
}
.admin-nav-link {
    display: block;
    padding: .55rem 1.25rem;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
}
.admin-nav-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.admin-nav-link.active {
    background: rgba(255,102,0,.12);
    color: #fff;
    border-left-color: var(--brand-orange);
}
.admin-sidebar-user {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
}
.admin-sidebar-user-name { display: block; font-weight: 600; margin-bottom: .35rem; }
.admin-sidebar-user a { color: rgba(255,255,255,.7); font-size: 13px; }
.admin-sidebar-user a:hover { color: var(--brand-orange); }
.admin-content-wrap { flex: 1; min-width: 0; display: flex; flex-direction: column; margin-left: 260px; }
.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: .875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 50;
}
.admin-topbar-title { margin: 0; font-size: 1.15rem; font-weight: 700; flex: 1; min-width: 0; }
.admin-topbar-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.admin-topbar-link { font-size: 14px; font-weight: 600; color: var(--brand-orange); text-decoration: none; }
.admin-topbar-link:hover { text-decoration: underline; }
.admin-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e5e5e5;
    border-radius: .5rem;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
}
.admin-menu-toggle span { display: block; height: 2px; width: 18px; background: var(--brand-black); margin: 0 auto; border-radius: 1px; }
.admin-main { padding: 1.5rem; flex: 1; width: 100%; max-width: 1400px; }
@media (max-width: 1023px) {
    .admin-sidebar { transform: translateX(-100%); transition: transform .25s ease; }
    .admin-shell.sidebar-open .admin-sidebar { transform: translateX(0); }
    .admin-shell.sidebar-open .admin-sidebar-backdrop { display: block; }
    .admin-content-wrap { margin-left: 0; }
    .admin-menu-toggle { display: flex; }
}
.admin-card { background: #fff; border-radius: .75rem; border: 1px solid #e5e5e5; padding: 1.25rem; margin-bottom: 1rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { border-bottom: 1px solid #eee; padding: .75rem; text-align: left; vertical-align: top; }
.admin-table th { font-size: 12px; text-transform: uppercase; color: #666; }
.admin-thumb { width: 80px; height: 48px; object-fit: cover; border-radius: .375rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: #fff; border: 1px solid #e5e5e5; border-radius: .75rem; padding: 1.25rem; }
.stat-card strong { display: block; font-size: 28px; margin-top: .25rem; }
.admin-form-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .admin-form-grid-2 { grid-template-columns: 1fr 1fr; } }

/* ── Admin media picker ── */
.media-picker-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: flex-start; }
.media-picker-preview { width: 120px; height: 80px; border-radius: .5rem; overflow: hidden; border: 1px solid #e5e5e5; background: #f9f9f9; display: flex; align-items: center; justify-content: center; }
.media-picker-preview img { width: 100%; height: 100%; object-fit: cover; }
.media-picker-ico { font-size: 12px; font-weight: 700; color: #666; }
.media-picker-input { flex: 1 1 220px; min-width: 0; }
.media-picker-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.media-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.media-modal[hidden] { display: none !important; }
.media-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.media-modal-panel { position: relative; background: #fff; border-radius: 1rem; width: min(920px, 100%); max-height: 85vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.media-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid #eee; }
.media-modal-close { border: none; background: none; font-size: 28px; line-height: 1; cursor: pointer; opacity: .6; }
.media-modal-upload { padding: 1rem 1.25rem; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.media-modal-grid { padding: 1rem 1.25rem; overflow: auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; }
.media-modal-item { position: relative; border-radius: .5rem; overflow: hidden; border: 1px solid #e5e5e5; }
.media-modal-select { display: block; width: 100%; padding: 0; border: none; background: #f9f9f9; cursor: pointer; aspect-ratio: 4/3; }
.media-modal-select img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-modal-select:hover { outline: 2px solid var(--brand-orange); }
.media-modal-delete { position: absolute; top: 4px; right: 4px; width: 24px; height: 24px; border: none; border-radius: 999px; background: rgba(0,0,0,.65); color: #fff; cursor: pointer; font-size: 16px; line-height: 1; }
.media-library-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.media-library-item { border: 1px solid #e5e5e5; border-radius: .75rem; overflow: hidden; }
.media-library-item img { width: 100%; height: 120px; object-fit: cover; display: block; }
.media-library-meta { padding: .5rem; font-size: 11px; }
.media-library-meta input { width: 100%; font-size: 11px; margin-bottom: .35rem; }
.media-library-delete { margin: 0; }

/* ── WhatsApp float ── */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 9000;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
    color: #fff;
}
@media (max-width: 640px) {
    .whatsapp-float { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
}

/* ── Fleet & checkout ── */
.arac-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .arac-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .arac-grid { grid-template-columns: repeat(3, 1fr); } }
.arac-kart { background: #fff; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s; }
.arac-kart:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.arac-kart-link { display: block; color: inherit; }
.arac-kart-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.arac-kart-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.arac-kart-badge { position: absolute; top: .75rem; left: .75rem; background: var(--brand-black); color: #fff; font-size: 11px; font-weight: 600; padding: .25rem .6rem; border-radius: 9999px; }
.arac-kart-body { padding: 1rem 1.25rem 1.25rem; }
.arac-kart-title { margin: 0; font-size: 1.125rem; font-weight: 700; }
.arac-kart-meta { margin: .35rem 0 0; font-size: 13px; color: #737373; }
.arac-kart-price-total { display: block; font-size: 1.25rem; font-weight: 700; color: var(--brand-orange); }
.arac-kart-price-sub { font-size: 12px; color: #737373; }
.arac-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.arac-filter { padding: .5rem 1rem; border-radius: 9999px; border: 1px solid #e5e5e5; font-size: 14px; font-weight: 500; background: #fff; }
.arac-filter.is-active, .arac-filter:hover { background: var(--brand-black); color: #fff; border-color: var(--brand-black); }
.arac-detail-grid { display: grid; gap: 2rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 900px) { .arac-detail-grid { grid-template-columns: 1.4fr 1fr; } }
.arac-detail-img { width: 100%; border-radius: 1rem; aspect-ratio: 16/10; object-fit: cover; }
.arac-features { margin: 1rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.arac-features li { background: #f5f5f5; padding: .35rem .75rem; border-radius: 9999px; font-size: 13px; }
.arac-detail-price { font-size: 1.75rem; font-weight: 700; color: var(--brand-orange); margin: .5rem 0 0; }

/* ── Araç detay (full) ── */
.arac-detail-page { padding: 2rem 0 4rem; background: #fafafa; }
.arac-detail-layout { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .arac-detail-layout { grid-template-columns: 1fr 380px; } }
.arac-breadcrumb { font-size: 13px; opacity: .75; display: flex; flex-wrap: wrap; gap: .35rem .5rem; align-items: center; }
.arac-breadcrumb a { color: #fff; text-decoration: none; opacity: .9; }
.arac-breadcrumb a:hover { text-decoration: underline; }
.arac-gallery { background: #fff; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); margin-bottom: 1.5rem; }
.arac-gallery-main { position: relative; aspect-ratio: 16/10; background: #eee; }
.arac-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arac-gallery-badge { position: absolute; top: 1rem; left: 1rem; font-size: 12px; font-weight: 700; padding: .35rem .75rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.arac-gallery-badge--ok { background: #16a34a; color: #fff; }
.arac-gallery-badge--no { background: #dc2626; color: #fff; }
.arac-gallery-thumbs { display: flex; gap: .5rem; padding: .75rem; overflow-x: auto; border-top: 1px solid #eee; }
.arac-gallery-thumb { flex: 0 0 88px; height: 60px; border: 2px solid transparent; border-radius: .5rem; overflow: hidden; padding: 0; cursor: pointer; background: #f5f5f5; }
.arac-gallery-thumb.is-active { border-color: var(--brand-orange); }
.arac-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arac-detail-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: flex-end; margin-bottom: 1.5rem; }
.arac-detail-cat { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-orange); margin-bottom: .35rem; }
.arac-detail-title { margin: 0; font-size: 1.75rem; font-weight: 800; line-height: 1.2; }
.arac-detail-meta { margin: .5rem 0 0; font-size: 14px; color: #737373; }
.arac-detail-head-price { text-align: right; }
.arac-detail-from { display: block; font-size: 12px; color: #737373; text-transform: uppercase; letter-spacing: .05em; }
.arac-detail-head-price strong { font-size: 1.5rem; color: var(--brand-orange); }
.arac-spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .arac-spec-grid { grid-template-columns: repeat(4, 1fr); } }
.arac-spec-card { background: #fff; border: 1px solid #e5e5e5; border-radius: .75rem; padding: .875rem 1rem; }
.arac-spec-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #737373; margin-bottom: .25rem; }
.arac-spec-card strong { font-size: 14px; font-weight: 700; }
.arac-detail-section { background: #fff; border-radius: 1rem; padding: 1.5rem; margin-bottom: 1rem; border: 1px solid #eee; }
.arac-section-title { margin: 0 0 1rem; font-size: 1.125rem; font-weight: 800; }
.arac-section-lead { margin: -.5rem 0 1rem; font-size: 14px; color: #737373; }
.arac-prose p { margin: 0 0 1rem; line-height: 1.75; color: #404040; }
.arac-prose p:last-child { margin-bottom: 0; }
.arac-feature-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.arac-feature-grid li { display: flex; align-items: center; gap: .5rem; font-size: 14px; background: #f9f9f9; padding: .65rem .85rem; border-radius: .5rem; }
.arac-feature-icon { color: var(--brand-orange); flex-shrink: 0; display: flex; }
.arac-included-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.arac-included-list li { display: flex; align-items: center; gap: .5rem; font-size: 14px; color: #166534; background: #f0fdf4; padding: .65rem .85rem; border-radius: .5rem; }
.arac-included-list svg { flex-shrink: 0; color: #16a34a; }
.arac-info-box { font-size: 14px; line-height: 1.7; color: #525252; background: #fffbeb; border: 1px solid #fde68a; border-radius: .75rem; padding: 1rem 1.25rem; }
.arac-extras-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.arac-extras-list li { display: grid; grid-template-columns: 1fr auto; gap: .15rem .75rem; padding: .75rem 1rem; background: #f9f9f9; border-radius: .5rem; font-size: 14px; }
.arac-extras-list li small { grid-column: 1 / -1; color: #737373; font-size: 13px; }
.arac-extras-list li span { font-weight: 700; color: var(--brand-orange); white-space: nowrap; }
.arac-detail-sidebar { position: relative; }
.arac-booking-card { background: #fff; border-radius: 1rem; box-shadow: 0 12px 40px rgba(0,0,0,.12); padding: 1.5rem; border: 1px solid #eee; }
@media (min-width: 1024px) { .arac-booking-card { position: sticky; top: 1rem; } }
.arac-booking-title { margin: 0 0 1rem; font-size: 1.125rem; font-weight: 800; }
.arac-booking-dl { margin: 0 0 1.25rem; padding: 0 0 1.25rem; border-bottom: 1px solid #eee; }
.arac-booking-dl div { margin-bottom: .75rem; }
.arac-booking-dl div:last-child { margin-bottom: 0; }
.arac-booking-dl dt { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #737373; margin-bottom: .15rem; }
.arac-booking-dl dd { margin: 0; font-size: 14px; font-weight: 600; }
.arac-booking-breakdown { margin-bottom: 1.25rem; }
.arac-booking-line { display: flex; justify-content: space-between; gap: 1rem; font-size: 14px; color: #525252; padding: .35rem 0; }
.arac-booking-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: .75rem; margin-top: .5rem; border-top: 2px solid var(--brand-black); font-size: 1rem; }
.arac-booking-total strong { font-size: 1.75rem; color: var(--brand-orange); }
.arac-booking-note { margin: .5rem 0 0; font-size: 12px; color: #737373; }
.arac-booking-guarantee { display: flex; align-items: center; gap: .35rem; justify-content: center; margin: .75rem 0 0; font-size: 12px; color: #166534; text-align: center; }
.arac-back-link { display: block; text-align: center; margin-top: 1rem; font-size: 14px; color: var(--brand-orange); }
.arac-similar { padding: 3rem 0 1rem; border-top: 1px solid #e5e5e5; margin-top: 2rem; background: #fff; }
.arac-similar .arac-section-title { margin-bottom: 1.5rem; }
.checkout-grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  align-items: start;
}
.checkout-grid > * {
  min-width: 0;
}
@media (min-width: 900px) {
  .checkout-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}
.checkout-page.page-content {
  max-width: 1100px;
  width: 100%;
}
.checkout-page .form-card {
  max-width: none;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.checkout-extra {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.4;
}
.checkout-extra input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: .15rem;
}
.checkout-total { font-size: 1.25rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #eee; }
.checkout-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  align-self: start;
}
@media (max-width: 899px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }

  .checkout-page.page-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ── Mobil & Apple Safari uyumluluk ── */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

a, button, .btn, .booking-tab, .header-icon-btn, .arac-filter, .media-picker-open {
  -webkit-tap-highlight-color: rgba(255, 80, 0, .15);
}

input, select, textarea, button {
  font-size: 16px;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 1.5em;
  line-height: 1.4;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

.mobile-menu-panel {
  height: 100%;
  height: 100dvh;
  max-height: -webkit-fill-available;
  padding-bottom: var(--safe-bottom);
}

.whatsapp-float {
  right: calc(1.25rem + var(--safe-right));
  bottom: calc(1.25rem + var(--safe-bottom));
}

.arac-booking-card,
.checkout-summary {
  position: -webkit-sticky;
  position: sticky;
}

.arac-gallery-thumbs,
.admin-sidebar-nav,
.admin-card--scroll {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

@media (max-width: 1023px) {
  .arac-booking-card,
  .checkout-summary {
    position: static;
  }

  .admin-main {
    padding: 1rem;
    padding-bottom: calc(1rem + var(--safe-bottom));
  }

  .admin-topbar {
    padding-top: calc(.875rem + var(--safe-top));
    padding-left: calc(1.25rem + var(--safe-left));
    padding-right: calc(1.25rem + var(--safe-right));
  }

  .admin-card:has(.admin-table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table {
    min-width: 540px;
  }

  .admin-topbar-title {
    font-size: 1rem;
  }

  .form-card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 1.25rem;
  }

  .page-content {
    padding: 2rem 1rem 3rem;
  }

  .page-hero {
    padding: 2rem 0;
  }

  .page-hero .text-42,
  .page-hero .font-display.text-42 {
    font-size: clamp(1.5rem, 7vw, 2.25rem) !important;
    line-height: 1.05;
  }

  .hero-section {
    min-height: auto;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-inner {
    padding-bottom: 1.5rem;
  }

  .features-frame {
    margin-top: -1rem;
  }

  .feature-card-title {
    font-size: 1.35rem;
  }

  .arac-detail-page {
    padding: 1.25rem 0 2.5rem;
  }

  .arac-detail-title {
    font-size: 1.4rem;
  }

  .arac-detail-head-price {
    width: 100%;
    text-align: left;
  }

  .arac-feature-grid {
    grid-template-columns: 1fr;
  }

  .booking-submit,
  .btn,
  .btn-lg {
    min-height: 48px;
  }

  .booking-tab {
    min-height: 44px;
  }

  .header-icon-btn {
    width: 44px;
    height: 44px;
  }

  .media-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 2rem);
    margin: 1rem;
  }

  .media-modal {
    padding: calc(1rem + var(--safe-top)) calc(1rem + var(--safe-right)) calc(1rem + var(--safe-bottom)) calc(1rem + var(--safe-left));
  }
}

@media (max-width: 767px) {
  .site-header-inner {
    gap: .35rem;
    padding: .65rem .75rem;
  }

  .site-header-nav {
    gap: 0;
  }

  .site-logo-link .text-xs-tag {
    display: none;
  }

  .header-nav-link span:not(.nav-sm-only-inline) {
    display: none;
  }

  .header-nav-link {
    padding: .375rem;
  }

  .booking-widget-top {
    min-width: 0;
  }

  .booking-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: .15rem;
  }

  .booking-tabs::-webkit-scrollbar {
    display: none;
  }

  .booking-tab {
    flex-shrink: 0;
  }

  .booking-manage-link {
    font-size: 13px;
    white-space: normal;
    text-align: left;
  }

  .booking-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .age-wrap {
    width: 100%;
  }

  .page-band,
  #main-content,
  .site-footer {
    max-width: 100%;
    overflow-x: clip;
  }
}

@media (max-width: 639px) {
  .booking-row {
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }

  .booking-field-date {
    width: 100%;
  }

  .site-logo-img {
    max-width: 160px;
  }

  .arac-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .25rem;
    margin-right: -1rem;
    padding-right: 1rem;
  }

  .arac-filter {
    flex-shrink: 0;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero-section {
    min-height: -webkit-fill-available;
  }

  .admin-shell {
    min-height: -webkit-fill-available;
  }
}

