:root {
  --bg: #faf7f2;
  --surface: #fffdfc;
  --primary: #c55a2b;
  --primary-dark: #a24621;
  --primary-light: #f1ddcb;
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --line: #e8e0d8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

::selection {
  background: var(--primary);
  color: #fffdfc;
}

:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.container-wandora {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container-wandora {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fffdfc;
  box-shadow: 0 4px 24px rgba(31, 31, 31, 0.06);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 1px solid rgba(31, 31, 31, 0.2);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-invert {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fffdfc;
}

.btn-outline-invert:hover {
  border-color: #fffdfc;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.card-surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(31, 31, 31, 0.06);
}

.route-divider {
  height: 2px;
  background-image: linear-gradient(90deg, var(--primary) 0 10px, transparent 10px 20px);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  opacity: 0.45;
}

.postmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px dashed rgba(197, 90, 43, 0.4);
  color: var(--primary);
}

.skeleton {
  border-radius: 0.75rem;
  background: rgba(232, 224, 216, 0.7);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}


.image-placeholder {
  min-height: 100%;
}

.image-placeholder svg {
  flex-shrink: 0;
}

.wandora-swiper {
  overflow: hidden;
}

.wandora-swiper .swiper-slide {
  height: auto;
}

.wandora-swiper[data-wandora-swiper="cards"] .swiper-slide {
  width: 280px;
}

.wandora-swiper[data-wandora-swiper="testimonials"] .swiper-slide {
  width: 300px;
}

.wandora-quote-swiper {
  padding-bottom: 2.5rem;
}

.wandora-quote-swiper .swiper-slide {
  height: auto;
}

.wandora-route-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 1.75rem;
  margin-top: 1.5rem;
}

.wandora-route-bullet {
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 !important;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  cursor: pointer;
  transition: width 0.3s ease;
}

.wandora-route-bullet .route-divider {
  display: block;
  width: 100%;
  opacity: 0.25;
  transition: opacity 0.3s ease, background-size 0.3s ease;
}

.wandora-route-bullet.swiper-pagination-bullet-active {
  width: 4rem;
}

.wandora-route-bullet.swiper-pagination-bullet-active .route-divider {
  opacity: 0.85;
  background-size: 20px 2px;
}

.wandora-route-bullet:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 4px;
}

@media (min-width: 640px) {
  .wandora-swiper[data-wandora-swiper="cards"] .swiper-slide {
    width: 340px;
  }

  .wandora-swiper[data-wandora-swiper="testimonials"] .swiper-slide {
    width: 360px;
  }
}




.wandora-slider-pagination .wandora-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(30, 30, 30, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wandora-slider-pagination .wandora-dot-active {
    width: 28px;
    background: var(--primary);
}

.wandora-thumb-swiper .swiper-slide {
    opacity: 1;
}
