@charset "UTF-8";

/*
 * Kleopatra - custom overrides
 * Comments in English only (avoid editor/encoding issues with non-ASCII)
 */

/* Premium Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #f7f7f9 0%, #edeef2 50%, #f0f2f8 100%);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader.force-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.preloader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader__logo-img {
  width: 80px;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  animation: preloaderLogoIn 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) 0.1s forwards;
}

.preloader__spinner {
  position: relative;
  width: 48px;
  height: 48px;
}

.preloader__spinner-ring {
  position: absolute;
  inset: 0;
  border: 2.5px solid transparent;
  border-top-color: #38bdf8;
  border-right-color: rgba(56, 189, 248, 0.3);
  border-radius: 50%;
  animation: preloaderSpin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.preloader__spinner-ring:nth-child(2) {
  inset: 6px;
  border-top-color: #a78bfa;
  border-right-color: rgba(167, 139, 250, 0.3);
  animation-duration: 0.8s;
  animation-direction: reverse;
}

.preloader__spinner-ring:nth-child(3) {
  inset: 12px;
  border-width: 2px;
  border-top-color: #34d399;
  border-right-color: rgba(52, 211, 153, 0.3);
  animation-duration: 1.2s;
}

.preloader__text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #71779a;
  opacity: 0;
  animation: preloaderTextIn 0.5s ease 0.3s forwards;
}

@keyframes preloaderLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderTextIn {
  to {
    opacity: 1;
  }
}

/* Dark mode preloader */
@media (prefers-color-scheme: dark) {
  .preloader {
    background: linear-gradient(165deg, #18181b 0%, #121214 50%, #0a0a0c 100%);
  }
  
  .preloader__text {
    color: #a1a1aa;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .preloader,
  .preloader.is-loaded {
    transition: none;
  }
  
  .preloader__logo-img,
  .preloader__spinner-ring,
  .preloader__text {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Hero: YouTube background video (16:9 cover + edge crop hides title/watermark) */
.yt-background-container {
  --yt-crop-scale: 1.22;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.yt-background-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 100 / 9 * 16 */
  transform: translate(-50%, -50%) scale(var(--yt-crop-scale));
  transform-origin: center center;
  pointer-events: none;
  border: 0;
}

@media (max-width: 767px) {
  .yt-background-container {
    --yt-crop-scale: 1.42;
  }
}

/* Masks over YouTube title bar / watermark zones */
.yt-chrome-mask {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
}

.yt-chrome-mask--top {
  top: 0;
  height: 16%;
  background: linear-gradient(
    180deg,
    rgba(7, 20, 39, 0.98) 0%,
    rgba(7, 20, 39, 0.72) 45%,
    transparent 100%
  );
}

.yt-chrome-mask--bottom {
  bottom: 0;
  height: 24%;
  background: linear-gradient(
    0deg,
    rgba(7, 20, 39, 0.98) 0%,
    rgba(7, 20, 39, 0.7) 50%,
    transparent 100%
  );
}

@media (max-width: 767px) {
  .yt-chrome-mask--top {
    height: 20%;
  }

  .yt-chrome-mask--bottom {
    height: 30%;
  }
}

.yt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(7, 20, 39, 0.88) 0%,
    rgba(10, 30, 58, 0.65) 50%,
    rgba(8, 24, 48, 0.45) 100%
  );
  z-index: 1;
}

.yt-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 40%
  );
  z-index: 2;
  pointer-events: none;
}

.yt-player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  background: transparent;
}

/* Hide YouTube chrome when controls leak through */
.yt-background-container iframe ~ div,
.ytp-gradient-top,
.ytp-chrome-top,
.ytp-progress-bar-container,
.ytp-volume-panel,
.ytp-time-display,
.ytp-left-controls,
.ytp-right-controls,
.ytp-gradient-bottom {
  display: none !important;
  visibility: hidden !important;
}

/* Services section: Swiper carousel */
.services-swiper .swiper-slide {
  height: auto;
}

.services-swiper .swiper-slide article {
  height: 100%;
}

.services-swiper .swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
}

.services-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
}

.services-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #0d9488;
  width: 24px;
  border-radius: 999px;
}

/* ====== Premium Section Reveal Animation ====== */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-reveal.section-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Staggered reveal for child elements */
.section-reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: 
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-reveal.section-revealed > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.section-reveal.section-revealed > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.section-reveal.section-revealed > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.section-reveal.section-revealed > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.section-reveal.section-revealed > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.section-reveal.section-revealed > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.section-reveal.section-revealed > *:nth-child(n+7) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .section-reveal > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ====== Premium Active Menu Highlight ====== */
#navbar .nav-link {
  position: relative;
  transition: color 0.3s ease;
}

#navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
  border-radius: 2px;
  transition: 
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#navbar .nav-link:hover::after,
#navbar .nav-link.active::after {
  width: 100%;
  left: 0;
}

/* ====== Premium Language Switcher - Minimal Pill Style ====== */
.locale-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  background: rgba(0, 0, 0, 0.04);
  padding: 0.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.locale-switcher__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71779a;
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.locale-switcher__btn:hover {
  color: #383a4b;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.02);
}

.locale-switcher__btn.active {
  color: #fff;
  background: linear-gradient(135deg, #1e1b2e 0%, #2d3178 100%);
  box-shadow: 
    0 2px 8px -2px rgba(45, 49, 120, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Bayrak ikonları için flag sınıfı */
.locale-flag {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  vertical-align: middle;
}

.locale-flag-sm {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Mobile locale dropdown */
#mobileLocaleDropdown {
  position: relative;
}

#localeDropdownMenu {
  box-shadow: 
    0 10px 40px -10px rgba(45, 49, 120, 0.25),
    0 4px 12px -4px rgba(0, 0, 0, 0.15);
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#localeDropdownMenu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a4d67;
  transition: all 0.15s ease;
}

#localeDropdownMenu a:first-child {
  border-radius: 0.75rem 0.75rem 0 0;
}

#localeDropdownMenu a:last-child {
  border-radius: 0 0 0.75rem 0.75rem;
}

#localeDropdownMenu a:hover {
  background: rgba(56, 189, 248, 0.08);
  color: #1e1b2e;
}

#localeDropdownMenu a.active {
  background: rgba(56, 189, 248, 0.1);
  color: #0ea5e9;
  font-weight: 600;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .locale-switcher {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
  }
  
  .locale-switcher__btn {
    color: #a1a1aa;
  }
  
  .locale-switcher__btn:hover {
    color: #f4f4f5;
    background: rgba(255, 255, 255, 0.1);
  }
  
  #localeDropdownMenu {
    background: rgba(24, 24, 27, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  #localeDropdownMenu a {
    color: #d4d4d8;
  }
  
  #localeDropdownMenu a:hover {
    background: rgba(56, 189, 248, 0.1);
    color: #f4f4f5;
  }
  
  #localeDropdownMenu a.active {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .locale-switcher__btn,
  #localeDropdownMenu a {
    transition: none;
  }
  
  .locale-switcher__btn:hover {
    transform: none;
  }
  
  #localeDropdownMenu {
    animation: none;
  }
}
}

/* ====== Scroll Progress Indicator ====== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #a78bfa, #34d399);
  z-index: 999999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ====== Page Transition Overlay ====== */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(180deg, rgba(247, 247, 249, 0.95) 0%, rgba(237, 237, 242, 0.98) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.page-transition-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-color-scheme: dark) {
  .page-transition-overlay {
    background: linear-gradient(180deg, rgba(24, 24, 27, 0.95) 0%, rgba(18, 18, 21, 0.98) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition-overlay {
    transition: none;
  }
  
  .page-transition-overlay.is-active {
    opacity: 1;
  }
}

html {
  
  
}





}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  
  
  html {
    scroll-behavior: auto;
  }
}










/* Page transition overlay for language switch */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(180deg, rgba(247, 247, 249, 0.95) 0%, rgba(237, 237, 242, 0.98) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.page-transition-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-color-scheme: dark) {
  .page-transition-overlay {
    background: linear-gradient(180deg, rgba(24, 24, 27, 0.95) 0%, rgba(18, 18, 21, 0.98) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition-overlay {
    transition: none;
  }
  
  .page-transition-overlay.is-active {
    opacity: 1;
  }
}

/* Tablet viewport band: match Tailwind md (768px) through max 1023px (below lg) */
@media (min-width: 768px) and (max-width: 1023px) {
  html,
  body {
    overflow: hidden;
    height: 100%;
  }
}

/* Gallery tiles: skeleton, fade-in, branded cursor */
.gallery-tile-skeleton {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    110deg,
    rgba(237, 237, 242, 0.9) 8%,
    rgba(248, 250, 252, 1) 18%,
    rgba(237, 237, 242, 0.9) 33%
  );
  background-size: 200% 100%;
  animation: gallery-shimmer 1.2s ease-in-out infinite;
}

@media (prefers-color-scheme: dark) {
  .gallery-tile-skeleton {
    background: linear-gradient(
      110deg,
      rgba(39, 39, 42, 0.95) 8%,
      rgba(63, 63, 70, 0.9) 18%,
      rgba(39, 39, 42, 0.95) 33%
    );
    background-size: 200% 100%;
  }
}

@keyframes gallery-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.gallery-tile-img {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.gallery-tile-img.is-loaded {
  opacity: 1;
}

.gallery-tile-img.is-loaded + .gallery-tile-skeleton,
.gallery-tile:has(.gallery-tile-img.is-loaded) .gallery-tile-skeleton {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-tile > img {
  position: relative;
  z-index: 0;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    165deg,
    rgba(56, 58, 75, 0.06) 0%,
    rgba(24, 25, 38, 0.38) 55%,
    rgba(24, 25, 38, 0.52) 100%
  );
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
  opacity: 1;
}

.gallery-tile::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 3.35rem;
  height: 3.35rem;
  margin: -1.675rem 0 0 -1.675rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.96);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Ccircle cx='10.5' cy='10.5' r='6.25' stroke='%2338bdf8' stroke-width='1.85'/%3E%3Cpath stroke='%2338bdf8' stroke-width='1.85' stroke-linecap='round' d='M15 15l5 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.4rem 1.4rem;
  opacity: 0;
  transform: scale(0.86);
  transition:
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(0.34, 1.35, 0.64, 1);
  pointer-events: none;
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

@media (prefers-color-scheme: dark) {
  .gallery-tile::before {
    background-color: rgba(39, 39, 42, 0.94);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

.gallery-tile:hover::before,
.gallery-tile:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  #galeri .gallery-tile {
    cursor:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='13' cy='13' r='8' stroke='%2338bdf8' stroke-width='2.2'/%3E%3Cpath stroke='%2338bdf8' stroke-width='2.2' stroke-linecap='round' d='M19 19l9 9'/%3E%3C/svg%3E")
        14 14,
      pointer;
  }
}

/* Sheet modals (paket detay + sepet): blur backdrop, bottom sheet / centered panel */
body.paket-sheet-modal-open,
body.sepet-modal-open,
body.rez-msg-modal-open {
  overflow: hidden;
}

#paket-sheet-modal,
#sepet-modal,
#rez-msg-modal {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s;
}

#paket-sheet-modal.is-open,
#sepet-modal.is-open,
#rez-msg-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

#rez-msg-modal .rez-msg-modal__panel {
  transform: scale(0.97);
  opacity: 0;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
    opacity 0.22s ease;
}

#rez-msg-modal.is-open .rez-msg-modal__panel {
  transform: scale(1);
  opacity: 1;
}

.rez-msg-modal__list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rez-msg-modal__text {
  margin: 0;
}

/* Paket modal mobil görsel - tam ekran genişliği */
@media (max-width: 767px) {
  #paket-sheet-modal .paket-sheet-modal__sheet > div:first-child {
    margin-left: 0;
    margin-right: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 0;
  }
  
  #paket-sheet-modal .paket-sheet-modal__sheet > div:first-child img {
    width: 100%;
    height: clamp(220px, 55vw, 350px);
    object-fit: cover;
  }
}

/* Paket detay: alt sheet (mobil) / ortalanmış panel (480px+) */
#paket-sheet-modal .paket-sheet-modal__backdrop {
  display: none;
}

#paket-sheet-modal {
  align-items: center;
  padding: 1rem;
}

#paket-sheet-modal .paket-sheet-modal__sheet {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.25s ease;
}

#paket-sheet-modal.is-open .paket-sheet-modal__sheet {
  transform: scale(1) translateY(0);
  opacity: 1;
}

@media (min-width: 480px) {
  #paket-sheet-modal {
    align-items: center;
    padding: 1rem;
  }

  #paket-sheet-modal .paket-sheet-modal__sheet {
    max-height: min(88vh, 640px);
    transform: scale(0.95) translateY(8px);
    opacity: 0;
    transition:
      transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.25s ease;
  }

  #paket-sheet-modal.is-open .paket-sheet-modal__sheet {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Sepet: sağ kenardan sidebar çekmece */
#sepet-modal {
  --sepet-accent: #38bdf8;
  --sepet-accent-dark: #0ea5e9;
  --sepet-brand: #383a4b;
  --sepet-brand-muted: #4a4d67;
  --sepet-delete: #e25555;
  --sepet-delete-bg: #fff5f5;
  --sepet-border: rgba(56, 58, 75, 0.1);
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
}

#sepet-modal .sepet-modal__sheet {
  height: 100%;
  max-height: 100dvh;
  opacity: 1;
  transform: translateX(104%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -16px 0 40px -12px rgba(15, 23, 42, 0.2);
  background: #fff;
}

#sepet-modal .sepet-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.35rem;
  background: #fff;
}

#sepet-modal .sepet-modal__header h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f2937;
}

#sepet-modal .sepet-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s ease;
}

#sepet-modal .sepet-modal__close svg {
  width: 1.1rem;
  height: 1.1rem;
}

#sepet-modal .sepet-modal__close:hover {
  color: #4b5563;
}

#sepet-modal .sepet-modal__subtitle {
  margin: 0;
  padding: 0 1.25rem 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

#sepet-modal .sepet-modal__body {
  padding: 0;
}

#sepet-modal .sepet-modal__list {
  display: flex;
  flex-direction: column;
}

#sepet-modal .sepet-modal__empty {
  margin: 1rem 1.25rem;
  padding: 2.5rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px dashed var(--sepet-border);
  background: #fafafa;
  text-align: center;
}

#sepet-modal .sepet-modal__footer {
  padding: 1rem 1.25rem max(1rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--sepet-border);
  background: #fff;
}

#sepet-modal .sepet-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

#sepet-modal .sepet-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

#sepet-modal .sepet-modal__btn--outline {
  border: 1px solid var(--sepet-accent);
  background: #fff;
  color: var(--sepet-brand-muted);
}

#sepet-modal .sepet-modal__btn--outline:hover:not(:disabled) {
  border-color: var(--sepet-accent-dark);
  background: rgba(56, 189, 248, 0.1);
  color: var(--sepet-brand);
}

#sepet-modal .sepet-modal__btn--solid {
  border: 1px solid var(--sepet-accent);
  background: var(--sepet-accent);
  color: var(--sepet-brand);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.28);
}

#sepet-modal .sepet-modal__btn--solid:hover:not(:disabled) {
  background: var(--sepet-accent-dark);
  border-color: var(--sepet-accent-dark);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.32);
}

#sepet-modal .sepet-modal__btn:disabled,
#sepet-modal .sepet-modal__btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#sepet-modal .sepet-modal__footnote {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #9ca3af;
}

/* Cart rows */
.sepet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--sepet-border, rgba(56, 58, 75, 0.1));
  background: #fff;
}

.sepet-item--list {
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
}

.sepet-item--list .sepet-item__info {
  flex: 1;
  min-width: 0;
}

.sepet-item--list .sepet-item__title {
  font-size: 0.875rem;
  font-weight: 600;
}

.sepet-item--list .sepet-item__price {
  font-size: 0.875rem;
}

.sepet-item__media {
  flex-shrink: 0;
}

.sepet-item__thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
  background: #f3f4f6;
}

.sepet-item__info {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sepet-item__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.sepet-item__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
}

.sepet-item__qty-mark {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sepet-accent, #38bdf8);
  white-space: nowrap;
}

.sepet-item__price {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sepet-brand, #383a4b);
}

.sepet-item__stepper {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.15rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background: #fafafa;
}

.sepet-item__qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.sepet-item__qty-btn:hover:not(:disabled) {
  background: #fff;
  color: var(--sepet-accent, #38bdf8);
}

.sepet-item__qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sepet-item__qty-val {
  min-width: 1.5rem;
  padding: 0 0.2rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #374151;
}

.sepet-item__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
}

.sepet-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(226, 85, 85, 0.45);
  border-radius: 0.375rem;
  background: var(--sepet-delete-bg, #fff5f5);
  color: var(--sepet-delete, #e25555);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.sepet-item__remove svg {
  width: 1rem;
  height: 1rem;
}

.sepet-item__remove:hover {
  background: #fee2e2;
  border-color: var(--sepet-delete, #e25555);
}

.sepet-item__remove:active {
  transform: scale(0.96);
}
#sepet-modal.is-open .sepet-modal__sheet {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  #sepet-modal .sepet-modal__sheet {
    transition-duration: 0.01ms;
  }
}

/* CodeSeven toastr — üst sağ, sepet çekmecesinin üstünde, site fontu */
#toast-container {
  z-index: 200000;
}

#toast-container.toast-top-center {
  top: max(0.75rem, env(safe-area-inset-top));
  padding-left: max(0.75rem, env(safe-area-inset-left));
  padding-right: max(0.75rem, env(safe-area-inset-right));
}

#toast-container > div {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    "Segoe UI",
    sans-serif;
  box-shadow:
    0 10px 40px -12px rgba(15, 23, 42, 0.35),
    0 4px 14px rgba(15, 23, 42, 0.12);
}

/* Glass primary — modal “Sepete at” + #paketler “Paket Seç” */
:root {
  --kleopatra-glass-cyan: rgba(56, 189, 248, 0.52);
  --kleopatra-glass-lavender: rgba(167, 139, 250, 0.46);
  --kleopatra-glass-white: rgba(255, 255, 255, 0.56);
  --kleopatra-glass-edge: rgba(186, 230, 253, 0.88);
  --kleopatra-glass-text: #2d3178;
  --kleopatra-glass-icon: #e0f2fe;
  --kleopatra-logo-purple-soft: rgba(46, 49, 146, 0.22);
}

.kleopatra-glass-btn-primary {
  padding: 0.65rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--kleopatra-glass-text);
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 0.75rem;
  background: linear-gradient(
    145deg,
    var(--kleopatra-glass-white) 0%,
    var(--kleopatra-glass-cyan) 38%,
    var(--kleopatra-glass-lavender) 100%
  );
  backdrop-filter: blur(14px) saturate(1.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(46, 49, 146, 0.08),
    0 3px 16px rgba(56, 189, 248, 0.28),
    0 2px 10px rgba(99, 102, 241, 0.14);
}

a.kleopatra-glass-btn-primary {
  cursor: pointer;
  text-decoration: none;
}

.kleopatra-glass-btn-primary:hover {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(46, 49, 146, 0.06),
    0 6px 24px rgba(56, 189, 248, 0.38),
    0 4px 14px rgba(129, 140, 248, 0.22);
}

.kleopatra-glass-btn-primary:active {
  box-shadow:
    inset 0 1px 2px rgba(46, 49, 146, 0.12),
    0 1px 4px rgba(46, 49, 146, 0.08);
}

.kleopatra-glass-btn-primary:focus-visible {
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 3px rgba(56, 189, 248, 0.55),
    0 3px 16px rgba(56, 189, 248, 0.25);
}

.kleopatra-glass-btn-primary__icon,
.kleopatra-glass-btn-primary svg {
  color: var(--kleopatra-glass-icon);
  opacity: 0.98;
}

/* Paket kartları — “Paket Seç” metin + ok beyaz */
#paketler .kleopatra-glass-btn-primary {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

#paketler .kleopatra-glass-btn-primary svg {
  color: #fff;
  opacity: 1;
}

.package-duration-pulse {
  display: inline-flex;
  align-items: center;
  margin-inline: 0.12rem;
  padding: 0.08rem 0.42rem;
  border: 1px solid rgba(186, 230, 253, 0.42);
  border-radius: 999px;
  color: var(--kleopatra-glass-text, #2d3178);
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.76) 0%,
      var(--kleopatra-glass-cyan, rgba(56, 189, 248, 0.52)) 48%,
      var(--kleopatra-glass-lavender, rgba(167, 139, 250, 0.46)) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(46, 49, 146, 0.08),
    0 0 12px rgba(56, 189, 248, 0.18);
  backdrop-filter: blur(8px) saturate(1.35);
  -webkit-backdrop-filter: blur(8px) saturate(1.35);
}

.dark .package-duration-pulse {
  color: #eef6ff;
  border-color: rgba(125, 211, 252, 0.34);
  background:
    linear-gradient(
      135deg,
      rgba(14, 165, 233, 0.42) 0%,
      rgba(56, 189, 248, 0.5) 48%,
      rgba(167, 139, 250, 0.42) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 0 14px rgba(56, 189, 248, 0.22);
}

/* Paket kartları — çerçeve cam buton paleti (cyan / lavender, hafif glossy edge) */
#paketler .paket-card {
  border-color: rgba(125, 211, 252, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 2px 12px rgba(46, 49, 146, 0.08);
}

#paketler .paket-card:hover {
  border-color: rgba(56, 189, 248, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 6px 18px rgba(56, 189, 248, 0.14),
    0 2px 8px rgba(46, 49, 146, 0.09);
}

@media (prefers-color-scheme: dark) {
  #paketler .paket-card {
    border-color: rgba(125, 211, 252, 0.26);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 2px 14px rgba(0, 0, 0, 0.35);
  }

  #paketler .paket-card:hover {
    border-color: rgba(125, 211, 252, 0.4);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 6px 20px rgba(56, 189, 248, 0.1),
      0 2px 10px rgba(0, 0, 0, 0.35);
  }
}

#paket-sheet-modal .paket-sheet-footer-actions {
  gap: 0.625rem;
}

#paket-sheet-modal .paket-sheet-btn-secondary {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.015em;
  color: var(--kleopatra-glass-text);
  border: 1px solid var(--kleopatra-logo-purple-soft);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

#paket-sheet-modal .paket-sheet-btn-secondary:hover {
  color: var(--kleopatra-glass-text);
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 2px 8px rgba(56, 189, 248, 0.12);
}

#paket-sheet-modal .paket-sheet-btn-secondary:active {
  transform: translateY(1px);
}

#paket-sheet-modal .paket-sheet-btn-secondary:focus-visible {
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 0 0 2px rgba(165, 180, 252, 0.55);
}

@media (prefers-color-scheme: dark) {
  .kleopatra-glass-btn-primary {
    color: #f0efff;
    border-color: rgba(56, 189, 248, 0.42);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(56, 189, 248, 0.34) 42%,
      rgba(129, 140, 248, 0.38) 100%
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18),
      0 3px 18px rgba(56, 189, 248, 0.22),
      0 2px 12px rgba(0, 0, 0, 0.28);
  }

  .kleopatra-glass-btn-primary:hover {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 6px 26px rgba(56, 189, 248, 0.32),
      0 4px 14px rgba(129, 140, 248, 0.2),
      0 2px 10px rgba(0, 0, 0, 0.32);
  }

  .kleopatra-glass-btn-primary:focus-visible {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 0 0 3px rgba(56, 189, 248, 0.45),
      0 3px 18px rgba(0, 0, 0, 0.28);
  }

  #paket-sheet-modal .paket-sheet-btn-secondary {
    color: rgba(237, 242, 255, 0.92);
    border-color: rgba(165, 180, 252, 0.28);
    background: rgba(24, 24, 27, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  #paket-sheet-modal .paket-sheet-btn-secondary:hover {
    border-color: rgba(125, 211, 252, 0.4);
    background: rgba(39, 39, 42, 0.5);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 2px 10px rgba(0, 0, 0, 0.2);
  }

  #paket-sheet-modal .paket-sheet-btn-secondary:focus-visible {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 2px rgba(165, 180, 252, 0.4);
  }
}

/* --- Reservation page (rezervasyon.html) --- */
.rez-page {
  position: relative;
}

.rez-page__ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.rez-page__ambient-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    #f8f6f4 0%,
    #f0f2f8 34%,
    #e6eaf4 68%,
    #e2e7f1 100%
  );
}

.rez-page__ambient-glow {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background:
    radial-gradient(ellipse 78% 50% at 12% 0%, rgba(56, 189, 248, 0.14), transparent 58%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(129, 140, 248, 0.09), transparent 52%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(56, 58, 75, 0.05), transparent 58%);
}

@media (prefers-color-scheme: dark) {
  .rez-page__ambient-scrim {
    background: linear-gradient(
      165deg,
      #2c2c31 0%,
      #232328 42%,
      #1a1a1f 100%
    );
  }

  .rez-page__ambient-glow {
    opacity: 0.32;
    background:
      radial-gradient(ellipse 72% 46% at 10% 0%, rgba(56, 189, 248, 0.11), transparent 55%),
      radial-gradient(ellipse 46% 36% at 88% 12%, rgba(167, 139, 250, 0.07), transparent 50%),
      radial-gradient(ellipse 65% 42% at 48% 100%, rgba(99, 102, 241, 0.05), transparent 56%);
  }
}

.rez-page .rez-main {
  flex: 1 1 auto;
  min-height: 0;
}

/* After successful submit: vertical + horizontal center for thank-you card */
.rez-main-inner--thanks {
  justify-content: center;
  align-items: center;
}

.rez-main-inner--thanks .rez-empty-state {
  margin-top: 0;
}

.rez-empty-state--thanks {
  max-width: 26rem;
  box-shadow:
    0 22px 56px -20px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

@media (prefers-color-scheme: dark) {
  .rez-empty-state--thanks {
    box-shadow:
      0 24px 70px -24px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  }
}

.rez-empty-state--thanks #rez-empty-icon-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rez-thanks-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.rez-empty-state--enter {
  animation: rez-thanks-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .rez-empty-state--enter {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.rez-panel {
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.07) 45%,
    rgba(18, 20, 32, 0.42) 100%
  );
  backdrop-filter: blur(22px) saturate(1.55);
  -webkit-backdrop-filter: blur(22px) saturate(1.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 56px -24px rgba(0, 0, 0, 0.55);
  padding: 1.4rem 1.25rem;
}

@media (min-width: 640px) {
  .rez-panel {
    padding: 1.75rem 1.65rem;
  }
}

.rez-panel--form {
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 247, 252, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 28px 64px -28px rgba(15, 23, 42, 0.38);
}

.rez-panel__kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.rez-panel__kicker--dark {
  color: rgba(91, 96, 127, 0.95);
}

.rez-panel__title {
  margin-top: 0.4rem;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
}

.rez-panel__title--dark {
  color: #2a2d42;
}

.rez-panel__sub {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.rez-panel__sub--dark {
  color: rgba(91, 96, 127, 0.95);
}

@media (prefers-color-scheme: dark) {
  .rez-panel--form {
    border-color: rgba(63, 63, 70, 0.85);
    background: linear-gradient(180deg, rgba(24, 24, 27, 0.94) 0%, rgba(24, 24, 27, 0.9) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 28px 64px -28px rgba(0, 0, 0, 0.65);
  }

  .rez-panel__title--dark {
    color: #fafafa;
  }

  .rez-panel__sub--dark,
  .rez-panel__kicker--dark {
    color: rgba(212, 212, 216, 0.92);
  }
}

/* Summary column — açık kart, sayfa arka planına göre yüksek okunurluk */
.rez-panel--summary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #f1f5f9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 28px 60px -22px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(56, 189, 248, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.rez-panel--summary .rez-summary-header__mark {
  color: #0369a1;
  background: linear-gradient(145deg, rgba(224, 242, 254, 0.98) 0%, rgba(238, 242, 255, 0.92) 100%);
  border: 1px solid rgba(56, 189, 248, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 22px -10px rgba(56, 189, 248, 0.35);
}

.rez-panel--summary .rez-summary-header__step {
  color: #64748b;
}

.rez-panel--summary .rez-summary-header__title {
  color: #0f172a;
}

.rez-panel--summary .rez-summary-header__desc {
  color: #475569;
}

.rez-panel--summary .rez-summary-body {
  border-top-color: rgba(15, 23, 42, 0.08);
}

.rez-panel--summary .rez-summary-list {
  scrollbar-color: rgba(56, 189, 248, 0.45) rgba(241, 245, 249, 0.95);
}

.rez-panel--summary .rez-summary-list

.rez-panel--summary .rez-summary-totals__grid {
  background: #eef2f6;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.rez-panel--summary .rez-summary-totals__label {
  color: #64748b;
}

.rez-panel--summary .rez-summary-totals__value {
  color: #0f172a;
}

.rez-panel--summary .rez-summary-totals__hint {
  color: #64748b;
}

.rez-panel--summary .rez-summary-totals__divider {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 23, 42, 0.12) 35%,
    rgba(15, 23, 42, 0.12) 65%,
    transparent 100%
  );
}

.rez-panel--summary .rez-summary-trust {
  background: rgba(236, 253, 245, 0.92);
  border: 1px solid rgba(52, 211, 153, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.rez-panel--summary .rez-summary-trust__icon {
  color: #059669;
  background: rgba(209, 250, 229, 0.95);
  border-color: rgba(52, 211, 153, 0.42);
}

.rez-panel--summary .rez-summary-trust__text {
  color: #334155;
}

.rez-panel--summary .rez-summary-trust__lead {
  color: #047857;
}

.rez-panel--summary .rez-summary-card {
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 10px 26px -14px rgba(15, 23, 42, 0.14);
}

.rez-panel--summary .rez-summary-card__thumb {
  box-shadow:
    0 4px 14px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(15, 23, 42, 0.06);
}

.rez-panel--summary .rez-summary-card__thumb--ph {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px dashed rgba(100, 116, 139, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.rez-panel--summary .rez-summary-card__title {
  color: #0f172a;
}

.rez-panel--summary .rez-summary-card__badge {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.95) 0%, rgba(238, 242, 255, 0.88) 100%);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 2px 10px -4px rgba(56, 189, 248, 0.3);
}

.rez-panel--summary .rez-summary-card__badge-qty {
  color: #0369a1;
}

.rez-panel--summary .rez-summary-card__badge-unit {
  color: #64748b;
}

/* Price row in summary cards - minimal */
.rez-panel--summary .rez-summary-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 4px;
  border-top: none;
  font-size: 0.75rem;
}

.rez-panel--summary .rez-summary-card__unit-price {
  color: #94a3b8;
  font-weight: 400;
}

.rez-panel--summary .rez-summary-card__line-total {
  color: #64748b;
  font-weight: 500;
}

.rez-panel--summary .rez-summary-card__line-total strong {
  color: #059669;
  font-weight: 600;
}

/* Minimal price container */
.rez-panel--summary .rez-summary-price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.rez-panel--summary .rez-summary-price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #065f46;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rez-panel--summary .rez-summary-price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #059669;
  letter-spacing: -0.02em;
}

.rez-panel--summary .rez-summary-trust-text {
  margin: 12px 0 0;
  padding: 10px 14px;
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  line-height: 1.4;
}

/* Hide old totals grid */
.rez-panel--summary .rez-summary-totals {
  display: none;
}

/* Highlighted total price cell - minimal */
.rez-panel--summary .rez-summary-totals__cell--highlight {
  background: transparent;
  border-radius: 8px;
  padding: 4px 8px;
  border: none;
}

.rez-panel--summary .rez-summary-totals__value--price {
  color: #059669;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (hover: hover) and (pointer: fine) {
  .rez-panel--summary .rez-summary-card:hover {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      0 16px 36px -16px rgba(15, 23, 42, 0.18),
      0 0 0 1px rgba(56, 189, 248, 0.1);
  }
}

@media (prefers-color-scheme: dark) {
  .rez-panel--summary {
    border-color: rgba(63, 63, 70, 0.95);
    background: linear-gradient(180deg, #2a2a2e 0%, #222226 55%, #1c1c1f 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 28px 60px -22px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(56, 189, 248, 0.2);
  }

  .rez-panel--summary .rez-summary-header__mark {
    color: #7dd3fc;
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.2) 0%, rgba(129, 140, 248, 0.15) 100%);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 8px 22px -10px rgba(0, 0, 0, 0.45);
  }

  .rez-panel--summary .rez-summary-header__step {
    color: #a1a1aa;
  }

  .rez-panel--summary .rez-summary-header__title {
    color: #fafafa;
  }

  .rez-panel--summary .rez-summary-header__desc {
    color: #a1a1aa;
  }

  .rez-panel--summary .rez-summary-body {
    border-top-color: rgba(63, 63, 70, 0.85);
  }

  .rez-panel--summary .rez-summary-list {
    scrollbar-color: rgba(56, 189, 248, 0.4) rgba(39, 39, 42, 0.6);
  }

  .rez-panel--summary .rez-summary-list

  .rez-panel--summary .rez-summary-totals__grid {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(63, 63, 70, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .rez-panel--summary .rez-summary-totals__label {
    color: #a1a1aa;
  }

  .rez-panel--summary .rez-summary-totals__value {
    color: #fafafa;
  }

  .rez-panel--summary .rez-summary-totals__hint {
    color: #a1a1aa;
  }

  .rez-panel--summary .rez-summary-totals__divider {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.12) 35%,
      rgba(255, 255, 255, 0.12) 65%,
      transparent 100%
    );
  }

  .rez-panel--summary .rez-summary-trust {
    background: rgba(6, 78, 59, 0.28);
    border-color: rgba(52, 211, 153, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .rez-panel--summary .rez-summary-trust__icon {
    color: #6ee7b7;
    background: rgba(6, 95, 70, 0.35);
    border-color: rgba(52, 211, 153, 0.28);
  }

  .rez-panel--summary .rez-summary-trust__text {
    color: #d4d4d8;
  }

  .rez-panel--summary .rez-summary-trust__lead {
    color: #a7f3d0;
  }

  .rez-panel--summary .rez-summary-card {
    border-color: rgba(63, 63, 70, 0.85);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 28px -14px rgba(0, 0, 0, 0.5);
  }

  .rez-panel--summary .rez-summary-card__thumb {
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .rez-panel--summary .rez-summary-card__thumb--ph {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .rez-panel--summary .rez-summary-card__title {
    color: #fafafa;
  }

  .rez-panel--summary .rez-summary-card__badge {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0.1) 100%);
    border-color: rgba(56, 189, 248, 0.38);
  }

  .rez-panel--summary .rez-summary-card__badge-qty {
    color: #e0f2fe;
  }

  .rez-panel--summary .rez-summary-card__badge-unit {
    color: rgba(224, 242, 254, 0.72);
  }

  /* Price row in dark mode */
  .rez-panel--summary .rez-summary-card__price-row {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .rez-panel--summary .rez-summary-card__unit-price {
    color: rgba(255, 255, 255, 0.5);
  }

  .rez-panel--summary .rez-summary-card__line-total {
    color: rgba(255, 255, 255, 0.7);
  }

  .rez-panel--summary .rez-summary-card__line-total strong {
    color: #34d399;
  }

  /* Highlighted total price cell in dark mode - minimal */
  .rez-panel--summary .rez-summary-totals__cell--highlight {
    background: transparent;
    border: none;
  }

  .rez-panel--summary .rez-summary-totals__value--price {
    color: #34d399;
    text-shadow: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .rez-panel--summary .rez-summary-card:hover {
      border-color: rgba(56, 189, 248, 0.32);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 16px 36px -14px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(56, 189, 248, 0.1);
    }
  }
}

.rez-panel--summary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 1.35rem 1.35rem 0 0;
  background: linear-gradient(90deg, #38bdf8 0%, #a78bfa 45%, #34d399 100%);
  opacity: 0.92;
}

.rez-summary-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 0.35rem;
}

.rez-summary-header__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  color: #e0f2fe;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.35) 0%, rgba(167, 139, 250, 0.22) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 24px -8px rgba(0, 0, 0, 0.45);
}

.rez-summary-header__step {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.rez-summary-header__title {
  margin-top: 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.rez-summary-header__desc {
  margin-top: 0.45rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 22rem;
}

.rez-summary-body {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rez-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: min(52vh, 22rem);
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.45) rgba(255, 255, 255, 0.06);
}

.rez-summary-list

.rez-summary-list

.rez-summary-list

.rez-summary-totals {
  margin-top: 1rem;
}

.rez-summary-totals__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rez-summary-totals__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
}

.rez-summary-totals__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.rez-summary-totals__value {
  font-size: 1.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
}

.rez-summary-totals__hint {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.55);
}

.rez-summary-totals__divider {
  width: 1px;
  align-self: stretch;
  min-height: 2.75rem;
  margin: 0.15rem 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 30%,
    rgba(255, 255, 255, 0.18) 70%,
    transparent 100%
  );
}

.rez-summary-trust {
  margin-top: 1.35rem;
  padding: 1rem 1.05rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border-radius: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rez-summary-trust__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  color: #6ee7b7;
  background: rgba(6, 95, 70, 0.35);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.rez-summary-trust__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.rez-summary-trust__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(236, 253, 245, 0.88);
}

.rez-summary-trust__lead {
  display: block;
  font-weight: 800;
  color: #a7f3d0;
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

/* Package row cards */
.rez-summary-card {
  position: relative;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(0, 0, 0, 0.12) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 28px -12px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .rez-summary-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.28);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 16px 36px -14px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(56, 189, 248, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rez-summary-card {
    transition: none;
  }

  .rez-summary-card:hover {
    transform: none;
  }
}

.rez-summary-card__row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rez-summary-card--list .rez-summary-card__row {
  gap: 0;
}

.rez-summary-card--list .rez-summary-card__body {
  width: 100%;
}

.rez-summary-card__media {
  flex-shrink: 0;
}

.rez-summary-card__thumb {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.rez-summary-card__thumb--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rez-summary-card__body {
  flex: 1;
  min-width: 0;
}

.rez-summary-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.rez-summary-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.02em;
  min-width: 0;
}

.rez-summary-card__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  border-radius: 0.65rem;
  padding: 0.28rem 0.55rem 0.32rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28) 0%, rgba(56, 189, 248, 0.12) 100%);
  border: 1px solid rgba(56, 189, 248, 0.42);
  box-shadow: 0 2px 8px -2px rgba(56, 189, 248, 0.35);
}

.rez-summary-card__badge-qty {
  font-size: 0.88rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #f0f9ff;
  line-height: 1;
}

.rez-summary-card__badge-unit {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(224, 242, 254, 0.75);
}

.rez-field__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4a4d67;
  margin-bottom: 0.35rem;
}

.rez-field__hint {
  font-size: 0.7rem;
  color: #71779a;
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.rez-field__input {
  display: block;
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(56, 58, 75, 0.14);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  color: #383a4b;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.rez-field__input::placeholder {
  color: rgba(113, 119, 154, 0.75);
}

.rez-field__input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.22),
    inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.rez-field__textarea {
  min-height: 5.5rem;
  resize: vertical;
}

/* Date + time — premium grouped controls */
.rez-datetime {
  margin: 0;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid rgba(56, 58, 75, 0.12);
  border-radius: 1.1rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(246, 247, 252, 0.92) 45%,
    rgba(240, 249, 255, 0.35) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 24px -12px rgba(56, 189, 248, 0.2);
}

.rez-datetime__row {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .rez-datetime__row {
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 0.65rem 0.85rem;
  }
}

.rez-datetime__slot {
  min-width: 0;
}

.rez-datetime__sublabel {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b607f;
}

.rez-datetime__shell {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.05rem;
  padding: 0.35rem 0.65rem 0.35rem 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(56, 58, 75, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.04),
    0 2px 8px -4px rgba(15, 23, 42, 0.08);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.rez-datetime__shell:focus-within {
  border-color: rgba(56, 189, 248, 0.95);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.2),
    inset 0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px -6px rgba(56, 189, 248, 0.35);
}

.rez-datetime__glyph {
  flex-shrink: 0;
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  color: #0ea5e9;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.rez-datetime__glyph svg {
  width: 1.1rem;
  height: 1.1rem;
}

.rez-datetime__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.4rem 0.25rem 0.4rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  color: #1e1b2e;
  color-scheme: light;
}

.rez-datetime__input:focus {
  outline: none;
}

/* Air Datepicker — above glass UI, match page font */
#air-datepicker-global-container {
  z-index: 9999;
}

.rez-page .air-datepicker {
  --adp-font-family: "Plus Jakarta Sans", system-ui, "Segoe UI", sans-serif;
  --adp-border-radius: 0.85rem;
}

.rez-datetime__mid {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding-bottom: 1.85rem;
  color: #a1a1aa;
}

@media (min-width: 640px) {
  .rez-datetime__mid {
    display: flex;
  }
}

.rez-datetime__mid-line {
  width: 1px;
  height: 0.65rem;
  background: linear-gradient(180deg, transparent, rgba(56, 58, 75, 0.2), transparent);
}

.rez-datetime__mid-text {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8adc4;
}

/* Contact fields — same language as .rez-datetime */
.rez-contact {
  margin: 0;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid rgba(56, 58, 75, 0.12);
  border-radius: 1.1rem;
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(246, 247, 252, 0.94) 42%,
    rgba(250, 245, 255, 0.28) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 24px -12px rgba(167, 139, 250, 0.12);
}

.rez-contact__stack {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rez-ctl {
  display: flex;
  flex-direction: column;
  min-width: 0;
  cursor: pointer;
}

.rez-ctl__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b607f;
}

.rez-ctl__shell {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.05rem;
  padding: 0.35rem 0.65rem 0.35rem 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(56, 58, 75, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.04),
    0 2px 8px -4px rgba(15, 23, 42, 0.08);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.rez-ctl__shell:focus-within {
  border-color: rgba(56, 189, 248, 0.95);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.2),
    inset 0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px -6px rgba(56, 189, 248, 0.3);
}

.rez-ctl__shell--area {
  align-items: flex-start;
  min-height: 7.25rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.rez-ctl__glyph {
  flex-shrink: 0;
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  color: #7c3aed;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.22);
}

.rez-ctl__glyph svg {
  width: 1.1rem;
  height: 1.1rem;
}

.rez-ctl__glyph--hang {
  margin-top: 0.2rem;
}

.rez-ctl__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.4rem 0.25rem 0.4rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1e1b2e;
}

.rez-ctl__input::placeholder {
  color: rgba(113, 119, 154, 0.72);
  font-weight: 400;
}

.rez-ctl__input:focus {
  outline: none;
}

.rez-ctl__input--phone {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* intl-tel-input integration fixes */
.iti {
  width: 100%;
  display: block;
  min-width: 0;
}

.iti--separate-dial-code {
  width: 100%;
}

.iti .iti__flag-container {
  margin: 0;
}

.iti input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: none;
  background: transparent;
}

.iti__country-list {
  z-index: 9999;
}

.rez-ctl__shell {
  align-items: stretch;
}

.rez-ctl__shell .iti {
  display: flex;
  align-items: center;
}

.rez-ctl__textarea {
  flex: 1;
  min-width: 0;
  min-height: 5.25rem;
  border: none;
  background: transparent;
  padding: 0.35rem 0.25rem 0.15rem 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: #1e1b2e;
  resize: vertical;
}

.rez-ctl__textarea::placeholder {
  color: rgba(113, 119, 154, 0.7);
}

.rez-ctl__textarea:focus {
  outline: none;
}

.rez-ctl__foot {
  margin: 0.35rem 0 0 0;
  padding-left: 0.1rem;
  font-size: 0.65rem;
  line-height: 1.4;
  color: #8b90a8;
}

.rez-ctl__meta {
  margin: 0.35rem 0 0 0;
  font-size: 0.65rem;
  line-height: 1.4;
  color: #8b90a8;
}

@media (prefers-color-scheme: dark) {
  .rez-datetime {
    border-color: rgba(63, 63, 70, 0.85);
    background: linear-gradient(
      165deg,
      rgba(39, 39, 42, 0.55) 0%,
      rgba(24, 24, 27, 0.88) 50%,
      rgba(24, 24, 27, 0.72) 100%
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 4px 28px -12px rgba(0, 0, 0, 0.5);
  }

  .rez-datetime__sublabel {
    color: #a1a1aa;
  }

  .rez-datetime__shell {
    border-color: rgba(63, 63, 70, 0.95);
    background: rgba(9, 9, 11, 0.45);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .rez-datetime__shell:focus-within {
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow:
      0 0 0 3px rgba(56, 189, 248, 0.18),
      inset 0 1px 2px rgba(0, 0, 0, 0.25);
  }

  .rez-datetime__glyph {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.22);
  }

  .rez-datetime__input {
    color: #fafafa;
    color-scheme: dark;
  }

  .rez-datetime__mid-text {
    color: #71717a;
  }

  .rez-contact {
    border-color: rgba(63, 63, 70, 0.85);
    background: linear-gradient(
      168deg,
      rgba(39, 39, 42, 0.5) 0%,
      rgba(24, 24, 27, 0.9) 48%,
      rgba(30, 27, 45, 0.55) 100%
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 4px 28px -12px rgba(0, 0, 0, 0.45);
  }

  .rez-ctl__label {
    color: #a1a1aa;
  }

  .rez-ctl__shell {
    border-color: rgba(63, 63, 70, 0.95);
    background: rgba(9, 9, 11, 0.45);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .rez-ctl__shell:focus-within {
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow:
      0 0 0 3px rgba(56, 189, 248, 0.18),
      inset 0 1px 2px rgba(0, 0, 0, 0.25);
  }

  .rez-ctl__glyph {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.22);
  }

  .rez-ctl__input,
  .rez-ctl__textarea {
    color: #fafafa;
  }

  .rez-ctl__input::placeholder,
  .rez-ctl__textarea::placeholder {
    color: rgba(161, 161, 170, 0.72);
  }

  .rez-ctl__foot,
  .rez-ctl__meta {
    color: #71717a;
  }
}

@media (prefers-color-scheme: dark) {
  .rez-field__label {
    color: #e4e4e7;
  }

  .rez-field__hint {
    color: #a1a1aa;
  }

  .rez-field__input {
    border-color: rgba(63, 63, 70, 0.95);
    background: rgba(9, 9, 11, 0.5);
    color: #fafafa;
  }

  .rez-field__input::placeholder {
    color: rgba(161, 161, 170, 0.75);
  }
}

.rez-page__alert {
  padding: 0.9rem 1.15rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.rez-page__alert--error {
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(69, 10, 10, 0.45);
  color: #fecaca;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rez-page__alert--ok {
  border: 1px solid rgba(52, 211, 153, 0.42);
  background: rgba(6, 78, 59, 0.4);
  color: #d1fae5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ====== Premium Paket Sheet Modal ====== */
#paket-sheet-modal {
  z-index: 9999;
}

#paket-sheet-modal .paket-sheet-modal__backdrop {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: backdropFadeIn 0.3s ease;
}

@keyframes backdropFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#paket-sheet-modal .paket-sheet-modal__sheet {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 
    0 25px 80px -20px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(56, 189, 248, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  animation: modalSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: visible;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Premium close button */
#paket-sheet-modal .js-paket-sheet-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 
    0 4px 16px -4px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.2s ease;
  top: 1rem;
  right: 1rem;
}

#paket-sheet-modal .js-paket-sheet-close:hover {
  transform: scale(1.05) rotate(90deg);
  background: #fff;
  border-color: rgba(56, 189, 248, 0.5);
}

#paket-sheet-modal .js-paket-sheet-close svg {
  color: #64748b;
  transition: color 0.2s ease;
}

#paket-sheet-modal .js-paket-sheet-close:hover svg {
  color: #0ea5e9;
}

/* Premium title styling */
#paket-sheet-modal #paket-sheet-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1e1b2e 0%, #2d3178 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#paket-sheet-modal #paket-sheet-features {
  margin-top: 1.25rem;
}

#paket-sheet-modal #paket-sheet-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(56, 189, 248, 0.04);
  border-radius: 0.75rem;
  border: 1px solid rgba(56, 189, 248, 0.1);
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}

#paket-sheet-modal #paket-sheet-features li:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.2);
  transform: translateX(4px);
}

#paket-sheet-modal #paket-sheet-features li span:first-child {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

/* Premium quantity selector */
#paket-sheet-modal .paket-sheet-modal__qty-wrap {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,252,0.9));
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 
    inset 0 2px 4px rgba(56, 189, 248, 0.05),
    0 4px 12px -4px rgba(56, 189, 248, 0.15);
}

#paket-sheet-modal #paket-sheet-qty-minus,
#paket-sheet-modal #paket-sheet-qty-plus {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 
    0 2px 8px -2px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#paket-sheet-modal #paket-sheet-qty-minus:hover,
#paket-sheet-modal #paket-sheet-qty-plus:hover {
  transform: scale(1.05);
  box-shadow: 
    0 4px 16px -4px rgba(56, 189, 248, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#paket-sheet-modal #paket-sheet-qty-minus:active,
#paket-sheet-modal #paket-sheet-qty-plus:active {
  transform: scale(0.95);
}

#paket-sheet-modal #paket-sheet-qty-val {
  min-width: 3rem;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e1b2e, #2d3178);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium footer */
#paket-sheet-modal .paket-sheet-modal__footer {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 -4px 24px -12px rgba(56, 189, 248, 0.1);
}

/* Premium Sepete At button */
#paket-sheet-modal #paket-sheet-add {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #6366f1 100%);
  border: none;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  box-shadow: 
    0 4px 16px -2px rgba(56, 189, 248, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#paket-sheet-modal #paket-sheet-add::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#paket-sheet-modal #paket-sheet-add:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px -4px rgba(56, 189, 248, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

#paket-sheet-modal #paket-sheet-add:hover::before {
  opacity: 1;
}

#paket-sheet-modal #paket-sheet-add:active {
  transform: translateY(0);
}

#paket-sheet-modal #paket-sheet-continue {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  color: #64748b;
  transition: all 0.2s ease;
}

#paket-sheet-modal #paket-sheet-continue:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  color: #1e1b2e;
  transform: translateX(-4px);
}

/* Dark mode for modal */
@media (prefers-color-scheme: dark) {
  #paket-sheet-modal .paket-sheet-modal__backdrop {
    background: rgba(0, 0, 0, 0.7);
  }
  
  #paket-sheet-modal .paket-sheet-modal__sheet {
    background: linear-gradient(180deg, #1e1e1f 0%, #18181b 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 
      0 25px 80px -20px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(56, 189, 248, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  
  #paket-sheet-modal #paket-sheet-title {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
  
  #paket-sheet-modal #paket-sheet-features li {
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.15);
  }
  
  #paket-sheet-modal .paket-sheet-modal__qty-wrap {
    background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(20,20,20,0.9));
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  #paket-sheet-modal #paket-sheet-qty-minus,
  #paket-sheet-modal #paket-sheet-qty-plus {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  #paket-sheet-modal .paket-sheet-modal__footer {
    background: linear-gradient(180deg, #1e1e1f 0%, #141416 100%);
    border-top-color: rgba(255, 255, 255, 0.08);
  }
  
  #paket-sheet-modal #paket-sheet-continue {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
  }
  
  #paket-sheet-modal #paket-sheet-continue:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f4f4f5;
  }
}

/* Reduced motion for modal */
@media (prefers-reduced-motion: reduce) {
  #paket-sheet-modal .paket-sheet-modal__backdrop,
  #paket-sheet-modal .paket-sheet-modal__sheet,
  #paket-sheet-modal .js-paket-sheet-close,
  #paket-sheet-modal #paket-sheet-add {
    animation: none;
    transition: none;
  }
}

/* ====== Paket Sheet Modal - Hidden (replaced by SweetAlert) ====== */
#paket-sheet-modal {
  display: none !important;
}

/* ====== SweetAlert Package Selection Custom Styles ====== */
.paket-swal-content {
  text-align: left;
}

.paket-swal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.paket-swal-features li {
  padding: 0.25rem 0;
  color: #333;
}

.paket-swal-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.paket-swal-minus,
.paket-swal-plus {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 1.25rem;
}

.paket-swal-minus:hover,
.paket-swal-plus:hover {
  background: #eee;
}

.paket-swal-qty-val {
  font-size: 1.25rem;
  font-weight: bold;
  min-width: 2rem;
  text-align: center;
}

/* ============================================
   Elegant Package Card Styles
   ============================================ */

/* Card isolation */
.elegant-card {
  isolation: isolate;
}

/* Flip card base */
.elegant-back {
  backface-visibility: hidden;
}

/* Elegant scrollbar */
.elegant-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.elegant-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.elegant-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
}
.elegant-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.2);
}

.dark .elegant-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
}
.dark .elegant-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

/* Smooth button transitions */
.elegant-select-btn {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.elegant-action-btn {
  letter-spacing: 0.01em;
}

.package-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 0.625rem;
}

.package-card-action {
  position: relative;
  display: flex;
  min-height: 2.5rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(24, 24, 27, 0.1);
  background: linear-gradient(180deg, #27272a 0%, #18181b 100%);
  box-shadow: 0 8px 18px -14px rgba(24, 24, 27, 0.75);
  padding: 0.625rem 0.75rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.package-card-action-divider {
  display: none;
}

.package-card-action:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 24, 27, 0.2);
  background: linear-gradient(180deg, #3f3f46 0%, #27272a 100%);
  box-shadow: 0 12px 22px -15px rgba(24, 24, 27, 0.85);
  color: #fff;
}

.package-card-action--whatsapp {
  border-color: rgba(37, 211, 102, 0.42);
  background: linear-gradient(180deg, #2ee672 0%, #25d366 48%, #1db954 100%);
  box-shadow: 0 10px 20px -14px rgba(37, 211, 102, 0.95);
  color: #fff;
}

.package-card-action--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.62);
  background: linear-gradient(180deg, #35ed7a 0%, #25d366 45%, #16a34a 100%);
  box-shadow: 0 14px 24px -15px rgba(37, 211, 102, 1);
  color: #fff;
}

.package-card-action--whatsapp i {
  display: inline-flex;
  height: 1.7rem;
  width: 1.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.25rem;
  line-height: 1;
}

.dark .package-card-action {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #fafafa 0%, #e4e4e7 100%);
  box-shadow: 0 10px 20px -16px rgba(0, 0, 0, 0.9);
  color: #18181b;
}

.dark .package-card-action:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
  color: #18181b;
}

.dark .package-card-action--whatsapp {
  border-color: rgba(37, 211, 102, 0.46);
  background: #25d366;
  color: #fff;
}

.dark .package-card-action--whatsapp:hover {
  background: linear-gradient(180deg, #35ed7a 0%, #25d366 45%, #16a34a 100%);
  color: #fff;
}

.dark .package-card-action-divider {
  background: rgba(255, 255, 255, 0.16);
}

/* Card border on hover */
.elegant-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 10;
}

.elegant-card:hover::before {
  border-color: rgba(0,0,0,0.08);
}

.dark .elegant-card:hover::before {
  border-color: rgba(255,255,255,0.08);
}

/* Flip card styles */
.perspective-1000 {
  perspective: 1000px;
}

.transform-style-3d {
  transform-style: preserve-3d;
}

.backface-hidden {
  backface-visibility: hidden;
}

.group-hover\:rotate-y-180:hover .elegant-flip-inner,
.elegant-card:hover .elegant-flip-inner {
  transform: rotateY(180deg);
}

.rotate-y-180 {
  transform: rotateY(180deg);
}

.elegant-flip-card {
  cursor: pointer;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  #sepet-modal {
    --sepet-accent: #38bdf8;
    --sepet-accent-dark: #0ea5e9;
    --sepet-brand: #f4f4f5;
    --sepet-brand-muted: #d4d4d8;
    --sepet-delete: #f87171;
    --sepet-delete-bg: rgba(127, 29, 29, 0.25);
    --sepet-border: rgba(255, 255, 255, 0.1);
  }

  #sepet-modal .sepet-modal__sheet {
    background: #18181b;
    box-shadow: -16px 0 48px -12px rgba(0, 0, 0, 0.55);
  }

  #sepet-modal .sepet-modal__header,
  #sepet-modal .sepet-modal__footer {
    background: #18181b;
  }

  #sepet-modal .sepet-modal__header h2 {
    color: #f4f4f5;
  }

  #sepet-modal .sepet-modal__subtitle,
  #sepet-modal .sepet-modal__footnote {
    color: #a1a1aa;
  }

  #sepet-modal .sepet-modal__empty {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(39, 39, 42, 0.65);
  }

  .sepet-item {
    background: #18181b;
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .sepet-item__thumb {
    background: #3f3f46;
  }

  .sepet-item__title {
    color: #f4f4f5;
  }

  .sepet-item__price {
    color: #f4f4f5;
  }

  #sepet-modal .sepet-modal__btn--outline {
    background: transparent;
    color: var(--sepet-brand-muted);
  }

  #sepet-modal .sepet-modal__btn--outline:hover:not(:disabled) {
    background: rgba(56, 189, 248, 0.12);
    color: var(--sepet-brand);
  }

  #sepet-modal .sepet-modal__btn--solid {
    color: #18181b;
  }

  .sepet-item__stepper {
    background: #27272a;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .sepet-item__qty-btn {
    color: #e4e4e7;
  }

  .sepet-item__qty-val {
    color: #fafafa;
  }

  .sepet-item__remove:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
  }
}

.elegant-flip-front {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.elegant-flip-back {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

/* Unix Style Sepet Modal Button */
#sepet-sheet-modal .kleopatra-glass-btn-primary {
  background: #18181b;
  border-color: #3f3f46;
  color: #fafafa;
  font-weight: 500;
  letter-spacing: 0;
}

#sepet-sheet-modal .kleopatra-glass-btn-primary:hover {
  background: #27272a;
  border-color: #52525b;
  box-shadow: none;
}

#sepet-sheet-modal .kleopatra-glass-btn-primary:active {
  background: #3f3f46;
}

.dark #sepet-sheet-modal .kleopatra-glass-btn-primary {
  background: #fafafa;
  border-color: #d4d4d8;
  color: #18181b;
}

.dark #sepet-sheet-modal .kleopatra-glass-btn-primary:hover {
  background: #f4f4f5;
  border-color: #a1a1aa;
}

.dark #sepet-sheet-modal .kleopatra-glass-btn-primary:active {
  background: #e4e4e7;
}

/* Activity price list (spa menu style) */
.activity-prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 768px) {
  .activity-prices-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.activity-prices-column {
  min-width: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(56, 58, 75, 0.08),
    0 0 0 1px rgba(56, 58, 75, 0.06);
}

.dark .activity-prices-column {
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.activity-prices-table__body {
  --ap-time: 3.75rem;
  --ap-price: 4.25rem;
  --ap-cart: 8.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.35rem;
  background: linear-gradient(180deg, #f7f7f9 0%, #ededf2 100%);
}

.dark .activity-prices-table__body {
  background: linear-gradient(180deg, #27272a 0%, #18181b 100%);
}

.activity-prices-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--ap-time) var(--ap-price) var(--ap-cart);
  grid-template-areas:
    "activity activity activity activity"
    "time price cart cart";
  gap: 0.45rem 0.5rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(56, 58, 75, 0.06);
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #f7f7f9 0%, #fff 45%, #f7f7f9 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.activity-prices-row__activity {
  grid-area: activity;
  min-width: 0;
}

.activity-prices-row__time {
  grid-area: time;
  justify-self: end;
}

.activity-prices-row > .activity-prices-price-pill {
  grid-area: price;
  justify-self: center;
}

.activity-prices-row__cart-cell {
  grid-area: cart;
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  width: 100%;
  max-width: var(--ap-cart);
}

.dark .activity-prices-row {
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, #3f3f46 0%, #52525b 50%, #3f3f46 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .activity-prices-row {
    grid-template-columns: minmax(0, 1fr) var(--ap-time) var(--ap-price) var(--ap-cart);
    grid-template-areas: "activity time price cart";
    gap: 0 0.5rem;
    padding: 0.7rem 1rem;
  }

  .activity-prices-table__body {
    --ap-time: 4rem;
    --ap-price: 4.5rem;
    --ap-cart: 8.5rem;
  }
}

.activity-prices-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 0.35rem;
  width: 100%;
}

.activity-prices-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  min-height: 1.85rem;
  padding: 0.3rem 0.5rem;
  border-radius: 0.375rem;
  border: none;
  color: var(--kleopatra-glass-text, #2d3178);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(56, 189, 248, 0.38) 42%,
    rgba(167, 139, 250, 0.32) 100%
  );
  backdrop-filter: blur(12px) saturate(1.65);
  -webkit-backdrop-filter: blur(12px) saturate(1.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(46, 49, 146, 0.05),
    0 2px 10px rgba(56, 189, 248, 0.18);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.activity-prices-whatsapp-btn {
  display: inline-flex;
  min-height: 1.85rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: 1px solid rgba(37, 211, 102, 0.42);
  background: linear-gradient(180deg, #2ee672 0%, #25d366 48%, #1db954 100%);
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 2px 10px rgba(37, 211, 102, 0.22);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.activity-prices-whatsapp-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #35ed7a 0%, #25d366 45%, #16a34a 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 4px 14px rgba(37, 211, 102, 0.3);
}

.activity-prices-whatsapp-btn:active {
  transform: scale(0.97);
}

.activity-prices-cart-btn svg {
  color: #0ea5e9;
  opacity: 0.95;
}

.activity-prices-cart-btn:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 14px rgba(56, 189, 248, 0.28);
}

.activity-prices-cart-btn:active {
  transform: scale(0.97);
  box-shadow:
    inset 0 1px 2px rgba(46, 49, 146, 0.1),
    0 1px 4px rgba(46, 49, 146, 0.06);
}

.activity-prices-cart-btn__label {
  max-width: 4.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .activity-prices-cart-btn__label {
    max-width: none;
  }
}

.dark .activity-prices-cart-btn {
  color: #e0f2fe;
  background: linear-gradient(
    145deg,
    rgba(63, 63, 70, 0.55) 0%,
    rgba(56, 189, 248, 0.22) 45%,
    rgba(99, 102, 241, 0.2) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 2px 12px rgba(0, 0, 0, 0.25);
}

.dark .activity-prices-cart-btn svg {
  color: #7dd3fc;
}

.dark .activity-prices-cart-btn:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 4px 16px rgba(56, 189, 248, 0.22);
}

.dark .activity-prices-whatsapp-btn {
  border-color: rgba(37, 211, 102, 0.46);
  color: #fff;
}

.activity-prices-row__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #383a4b;
}

.dark .activity-prices-row__name {
  color: #f4f4f5;
}

.activity-prices-row__note {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-style: italic;
  color: #71779a;
}

.dark .activity-prices-row__note {
  color: #a1a1aa;
}

.activity-prices-row__time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5b607f;
  white-space: nowrap;
  text-align: right;
}

.dark .activity-prices-row__time {
  color: #d4d4d8;
}

.activity-prices-price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--ap-price);
  min-width: 3.25rem;
  padding: 0.32rem 0.5rem;
  border-radius: 0.375rem;
  border: none;
  background: rgba(56, 58, 75, 0.9);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark .activity-prices-price-pill {
  background: rgba(39, 39, 42, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.activity-prices-row--featured {
  align-items: start;
  padding: 0.85rem 1rem;
}

.activity-prices-row--featured .activity-prices-row__activity {
  grid-row: 1 / -1;
  align-self: center;
}

@media (min-width: 640px) {
  .activity-prices-row--featured {
    grid-template-areas: none;
    grid-template-columns: minmax(0, 1fr) var(--ap-time) var(--ap-price) var(--ap-cart);
    gap: 0 0.5rem;
    align-items: center;
  }

  .activity-prices-row--featured .activity-prices-row__activity {
    grid-area: unset;
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
  }

  .activity-prices-row--featured .activity-prices-row__options {
    display: grid;
    grid-column: 2 / -1;
    grid-row: 1;
    grid-template-columns: var(--ap-time) var(--ap-price) var(--ap-cart);
    gap: 0.5rem 0.5rem;
    align-content: center;
    align-self: center;
  }

  .activity-prices-row--featured .activity-prices-row__option {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: var(--ap-time) var(--ap-price) var(--ap-cart);
    gap: 0 0.5rem;
    align-items: center;
  }

  .activity-prices-row--featured .activity-prices-row__option .activity-prices-row__time {
    grid-area: unset;
    justify-self: end;
  }

  .activity-prices-row--featured .activity-prices-row__option .activity-prices-price-pill {
    grid-area: unset;
    justify-self: center;
  }

  .activity-prices-row--featured .activity-prices-row__option .activity-prices-row__cart-cell {
    grid-area: unset;
    justify-self: end;
    max-width: var(--ap-cart);
  }
}

@media (max-width: 639px) {
  .activity-prices-row--featured {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .activity-prices-row--featured .activity-prices-row__activity {
    grid-row: unset;
    grid-column: unset;
    width: 100%;
  }

  .activity-prices-row__options {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
  }

  .activity-prices-row__option {
    display: grid;
    grid-template-columns: var(--ap-time) var(--ap-price) minmax(0, 1fr);
    grid-template-areas: "time price cart";
    gap: 0.45rem 0.5rem;
    align-items: center;
    width: 100%;
  }

  .activity-prices-row__option .activity-prices-row__time {
    grid-area: time;
    justify-self: start;
  }

  .activity-prices-row__option .activity-prices-price-pill {
    grid-area: price;
    justify-self: center;
    max-width: none;
  }

  .activity-prices-row__option .activity-prices-row__cart-cell {
    grid-area: cart;
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }

  .activity-prices-row--featured .activity-prices-cart-btn__label {
    max-width: none;
  }
}

.activity-prices-row__featured-title {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #383a4b;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dark .activity-prices-row__featured-title {
  color: #fafafa;
}

.activity-prices-includes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .activity-prices-includes {
    grid-template-columns: 1fr 1fr;
  }
}

.activity-prices-includes > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-prices-includes ul {
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: disc;
}

.activity-prices-includes ul li {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #4a4d67;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dark .activity-prices-includes ul li {
  color: #d4d4d8;
}

.floating-support {
  position: fixed;
  left: 20px;
  bottom: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.support-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.support-menu.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.bottom-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn,
.support-btn,
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.menu-btn {
  gap: 10px;
  padding: 12px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
}

.menu-btn:hover {
  transform: translateX(5px);
}

.menu-btn.phone,
.support-btn {
  background: #111;
}

.menu-btn.messenger {
  background: #0084ff;
}

.menu-btn.instagram {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.support-btn {
  height: 58px;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.support-btn:hover {
  background: #222;
}

.whatsapp-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  font-size: 34px;
  animation: support-whatsapp-pulse 1.5s infinite;
}

@keyframes support-whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .support-btn {
    width: 56px;
    padding: 0;
  }

  .support-btn span,
  .menu-btn span {
    display: none;
  }

  .menu-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
  }
}
