@charset "UTF-8";
[x-cloak] {
  display: none !important;
}

/* ============================================================
   ULISSE TRAVEL — main.scss
   Theme CSS ported from examples/style.css
   ============================================================ */
:root {
  --bg:#f4f6f8;
  --surface:#fff;
  --bs-body-color:#447187 !important;
  --ink:#447187;
  --ink2:#3c547e;
  --ink3:#6e8bae;
  --ink4:#eef6ff;
  --border:#e2e6ec;
  --accent:#e86533;
  --accent-h:#d15525;
  --accent-l:#fff1eb;
  --gold:#d4a83a;
  --gold-l:#fff8e5;
  --navy:#14223b;
  --navy-l:#eaecf0;
  --teal:#1b8a7a;
  --teal-l:#e6f6f3;
  --ice:#c5dff0;
  --ff:"Roboto",sans-serif;
  --ffd:"Roboto",sans-serif;
  --r:16px;
  --rl:22px;
  --rr:999px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ═══ SHARED ═══ */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.tag--light {
  color: rgba(255, 255, 255, 0.55);
}

.sec-title {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.2;
  color: var(--ink);
}

.sec-title--left {
  text-align: left;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.68rem 1.4rem;
  border-radius: var(--rr);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 101, 51, 0.25);
  color: #fff;
}

.btn-cta--white {
  background: #fff;
  color: var(--navy);
}

.btn-cta--white:hover {
  background: var(--accent-l);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR  (transparent → solid on scroll)
   ═══════════════════════════════════════════════════════════ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 0.35s, box-shadow 0.35s;
}

.topnav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.topnav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.topnav__logo img {
  height: 40px;
  transition: height 0.3s;
}

.topnav.scrolled .topnav__logo img {
  height: 34px;
}

.topnav:not(.scrolled) .topnav__logo img {
  filter: brightness(0) invert(1);
}

.topnav__body {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.topnav__links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topnav__links > li > a {
  display: block;
  padding: 0.45rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  border-radius: var(--rr);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.topnav.scrolled .topnav__links > li > a {
  color: var(--ink);
}

.topnav__links > li > a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.topnav.scrolled .topnav__links > li > a:hover {
  background: var(--accent-l);
  color: var(--accent);
}

.topnav__links > li > a .bi-chevron-down {
  font-size: 0.5rem;
  margin-left: 0.15rem;
  vertical-align: middle;
}

/* Dropdown */
.topnav__dd {
  position: relative;
}

.topnav__drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
  padding: 0.45rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s;
  z-index: 50;
}

.topnav__dd:hover .topnav__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.topnav__drop a {
  display: block;
  padding: 0.38rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: all 0.15s;
  text-decoration: none;
}

.topnav__drop a:hover {
  background: var(--accent-l);
  color: var(--accent);
}

.topnav__drop-head {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink3);
  padding: 0.45rem 0.75rem 0.15rem;
}

.topnav__drop-div {
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0.5rem;
}

/* Right actions */
.topnav__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.8rem;
}

.topnav__area {
  display: none;
}

@media (min-width: 1100px) {
  .topnav__area {
    display: inline-flex;
  }
}
.topnav__tel {
  display: none;
}

@media (min-width: 1100px) {
  .topnav__tel {
    display: inline-flex;
  }
}
.topnav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--rr);
  transition: all 0.25s;
  text-decoration: none;
}

.topnav__cta:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 101, 51, 0.3);
  color: #fff;
}

.topnav__cta--wa {
  background: #25d366;
}

.topnav__cta--wa:hover {
  background: #1da851;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* Burger */
.topnav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.topnav__burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.topnav.scrolled .topnav__burger span {
  background: var(--ink);
}

.topnav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.topnav__burger.open span:nth-child(2) {
  opacity: 0;
}

.topnav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
  .topnav__burger {
    display: flex;
  }
  .topnav__body {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s;
    z-index: 998;
  }
  .topnav__body.open {
    transform: translateX(0);
  }
  .topnav__links {
    flex-direction: column;
    gap: 0;
  }
  .topnav__links > li > a {
    color: var(--ink);
    padding: 0.6rem 0.4rem;
  }
  .topnav__drop {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 0.8rem;
  }
  .topnav__right {
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .topnav__tel {
    display: inline-flex;
  }
  .topnav__area {
    display: inline-flex;
  }
}
/* ═══════════════════════════════════════════════════════════
   HERO  (full-bleed, centered text + search)
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
}

.hero__slider {
  position: absolute !important;
  inset: 0;
}

.hero__slider .carousel-inner, .hero__slider .carousel-item {
  height: 100%;
  min-height: 100svh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 7s linear;
}

.carousel-item.active .hero__bg {
  transform: scale(1.05);
}

.hero__dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 34, 59, 0.65) 0%, rgba(20, 34, 59, 0.4) 45%, rgba(20, 34, 59, 0.72) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 3rem;
  color: #fff;
}

.hero__kicker {
  display: block;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.hero__h1 {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero__h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__p {
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* dots */
.hero__dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.hero__dots button.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 26px;
  border-radius: var(--rr);
}

/* Search box (glassmorphism) */
.sbox {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--rl);
  padding: 1rem 1.1rem;
}

.sbox__tabs {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
}

.sbox__tab {
  font-weight: 700;
  font-size: 0.76rem;
  padding: 0.38rem 1rem;
  border-radius: var(--rr);
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s;
}

.sbox__tab.active {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.sbox__tab:not(.active):hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.sbox__row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.sbox__field {
  flex: 1 1 150px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: var(--r);
  padding: 0 0.8rem;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.sbox__field:focus-within {
  border-color: var(--accent);
}

.sbox__field i {
  color: var(--ink3);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sbox__field input, .sbox__field select, .sbox__field-btn {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ff);
  font-size: 0.84rem;
  padding: 0.65rem 0;
  width: 100%;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.sbox__go {
  flex: 0 0 auto;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s;
  white-space: nowrap;
}

.sbox__go:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 101, 51, 0.3);
}

@media (max-width: 767px) {
  .sbox__row {
    flex-direction: column;
  }
  .sbox__go {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .sbox__field {
    flex: 1 1 auto;
  }
}
/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.features {
  padding: 2.5rem 0;
  background: var(--surface);
}

.fcard {
  text-align: center;
  padding: 0.75rem;
}

.fcard__ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  transition: transform 0.3s;
}

.fcard:hover .fcard__ico {
  transform: scale(1.1);
}

.fcard__ico--blue {
  background: var(--navy-l);
  color: var(--navy);
}

.fcard__ico--gold {
  background: var(--gold-l);
  color: var(--gold);
}

.fcard__ico--navy {
  background: var(--navy-l);
  color: var(--navy);
}

.fcard__h {
  font-family: var(--ffd);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.fcard__p {
  font-size: 0.78rem;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   DESTINATIONS
   ═══════════════════════════════════════════════════════════ */
.dest {
  padding: 5rem 0;
  background: var(--bg);
}

.dest__all {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.dest__all:hover {
  gap: 0.55rem;
}

.dcard {
  position: relative;
  display: block;
  border-radius: var(--rl);
  overflow: hidden;
  height: 280px;
  text-decoration: none;
}

.dcard--big {
  height: 280px;
}

.dcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dcard:hover img {
  transform: scale(1.06);
}

.dcard__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(20, 34, 59, 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
}

.dcard__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(20, 34, 59, 0.5);
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  width: fit-content;
}

.dcard__info h3 {
  font-family: var(--ffd);
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 0.15rem;
}

.dcard__sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 767px) {
  .dcard, .dcard--big {
    height: 220px;
  }
}
/* ═══════════════════════════════════════════════════════════
   OFFERS
   ═══════════════════════════════════════════════════════════ */
.offers {
  padding: 5rem 0;
  background: var(--surface);
}

.ocard {
  display: flex;
  flex-direction: column;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.ocard:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

.ocard__img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.ocard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ocard:hover .ocard__img img {
  transform: scale(1.05);
}

.ocard__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.66rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--rr);
  letter-spacing: 0.03em;
}

.ocard__badge--teal {
  background: var(--teal);
}

.ocard__badge--navy {
  background: var(--navy);
}

.ocard__badge--ice {
  background: var(--ice);
  color: var(--navy);
}

.ocard__body {
  padding: 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ocard__body h4 {
  font-family: var(--ffd);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.ocard__body p {
  font-size: 0.82rem;
  color: var(--ink2);
  margin-bottom: 0.5rem;
  line-height: 1.55;
  flex: 1;
}

.ocard__link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
  text-decoration: none;
}

.ocard:hover .ocard__link {
  gap: 0.5rem;
}

/* Horizontal variant */
.ocard--horizontal {
  flex-direction: row;
}

.ocard--horizontal .ocard__img {
  width: 45%;
  height: auto;
  min-height: 200px;
  flex-shrink: 0;
}

.ocard--horizontal .ocard__body {
  justify-content: center;
}

@media (max-width: 767px) {
  .ocard--horizontal {
    flex-direction: column;
  }
  .ocard--horizontal .ocard__img {
    width: 100%;
    height: 180px;
  }
}
/* Gold card */
.ocard--gold {
  background: linear-gradient(135deg, #ffe9a0, #ffd54f);
  border: none;
  justify-content: center;
  min-height: 220px;
}

.ocard__body--center {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ocard__emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.4rem;
}

.ocard--gold h4 {
  color: var(--navy);
}

.ocard--gold p {
  color: rgba(20, 34, 59, 0.65);
}

.ocard--gold .ocard__link {
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════════════════ */
.divider-section {
  padding: 0;
  background: var(--bg);
}

.divider-section .divider {
  border: 0;
  border-top: 3px solid var(--accent-h);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews {
  padding: 5rem 0;
  background: var(--bg);
}

.rcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.6rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.rcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.rcard__stars {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
}

.rcard__txt {
  font-size: 0.86rem;
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.rcard__who {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rcard__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.rcard__av--b {
  background: var(--teal);
}

.rcard__av--c {
  background: var(--navy);
}

.rcard__who strong {
  font-size: 0.86rem;
}

.rcard__who small {
  color: var(--ink3);
  font-size: 0.72rem;
}

.rcard__check {
  margin-left: auto;
  color: var(--teal);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════
   HEYLIGHT
   ═══════════════════════════════════════════════════════════ */
.hey {
  padding: 4rem 0;
  background: var(--surface);
}

.hey__box {
  background: var(--navy);
  border-radius: var(--rl);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hey__box::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232, 101, 51, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hey__title {
  font-family: var(--ffd);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.18;
  margin-bottom: 0.7rem;
  position: relative;
}

.hey__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 450px;
  line-height: 1.65;
  position: relative;
  margin-bottom: 1.2rem;
}

.hey__img {
  max-width: 420px;
  border-radius: var(--r);
  position: relative;
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.news {
  padding: 5rem 0;
  background: var(--bg);
}

.news__box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 3rem;
  overflow: hidden;
}

.news__img {
  border-radius: var(--rl);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  transition: transform 0.4s;
  max-width: 360px;
  margin: 0 auto;
}

.news__box:hover .news__img {
  transform: rotate(0) scale(1.02);
}

.news__title {
  font-family: var(--ffd);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin-bottom: 0.45rem;
}

.news__text {
  color: var(--ink2);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  max-width: 420px;
  line-height: 1.6;
}

.news__form {
  display: flex;
  gap: 0.45rem;
  max-width: 430px;
}

.news__form input {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: var(--rr);
  padding: 0.65rem 1.1rem;
  font-family: var(--ff);
  font-size: 0.86rem;
  background: var(--bg);
  transition: border-color 0.2s;
}

.news__form input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 101, 51, 0.08);
}

.news__form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--rr);
  padding: 0.65rem 1.3rem;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.25s;
}

.news__form button:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 101, 51, 0.25);
}

.news__priv {
  color: var(--ink3);
  font-size: 0.7rem;
  margin-top: 0.55rem;
  display: block;
}

.news__priv a {
  color: var(--accent);
}

@media (max-width: 767px) {
  .news__form {
    flex-direction: column;
  }
}
/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.ft {
  background: #0e1724;
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 0 0;
  font-size: 0.84rem;
}

.ft__logo {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(1.3);
}

.ft__about {
  max-width: 270px;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.ft__social {
  display: flex;
  gap: 0.4rem;
}

.ft__social a {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
}

.ft__social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.ft__h {
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
}

.ft__ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft__ul li {
  margin-bottom: 0.4rem;
}

.ft__ul a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.ft__ul a:hover {
  color: var(--accent);
}

.ft__contact li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.ft__contact i {
  color: var(--accent);
  margin-top: 0.15rem;
}

.ft__btm {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.3rem 0;
  margin-top: 3rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.28);
}

.ft__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.6rem;
  margin-top: 0.2rem;
}

.ft__legal a {
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
}

.ft__legal a:hover {
  color: var(--accent);
}

.ft__pay {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ft__pay img {
  height: 24px;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.ft__pay img:hover {
  opacity: 0.7;
}

.ft__sig {
  background: rgba(0, 0, 0, 0.15);
  padding: 0.7rem 0;
}

.ft__sig-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.ft__sig-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

.ft__sig-link strong {
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 5px 18px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s;
  text-decoration: none;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.anim.vis {
  opacity: 1;
  transform: translateY(0);
}

.date-picker-wrap {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 200;
}
.date-picker-wrap > div {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.occupancy-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--rl);
  padding: 1.1rem 1.2rem 1rem;
  min-width: 264px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  font-family: var(--ff);
  font-size: 0.84rem;
  color: var(--ink);
}
.occupancy-panel > .btn {
  font-family: var(--ff);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--r);
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
  padding: 0.35rem 0.75rem;
}
.occupancy-panel > .btn:hover {
  background: var(--accent);
  color: #fff;
}

.occupancy-room {
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
}
.occupancy-room:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.occupancy-room strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.occupancy-room .btn-link {
  font-family: var(--ff);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0;
  text-decoration: none;
  color: var(--accent) !important;
}
.occupancy-room .btn-link:hover {
  opacity: 0.7;
}
.occupancy-room > div > span:first-child {
  flex: 1;
  color: var(--ink);
}
.occupancy-room > div > span:not(:first-child) {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 600;
}
.occupancy-room .btn-outline-secondary {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  border-color: rgba(232, 101, 51, 0.4);
  color: var(--accent);
  background: transparent;
}
.occupancy-room .btn-outline-secondary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.occupancy-room .btn-outline-secondary:active {
  background: var(--accent-h);
  border-color: var(--accent-h);
}
.occupancy-room label {
  font-size: 0.79rem;
  color: var(--ink2);
  white-space: nowrap;
}
.occupancy-room .form-select-sm {
  font-family: var(--ff);
  font-size: 0.8rem;
  border-color: #e0e0e0;
  border-radius: var(--r);
}
.occupancy-room .form-select-sm:focus {
  border-color: var(--accent);
  box-shadow: none;
}

#results-grid {
  transition: opacity 0.25s ease;
}

[data-results-filter]:checked ~ label,
[data-results-filter]:checked + label {
  color: #007BFF;
  font-weight: 600;
}

#sort-select {
  font-size: 0.85rem;
  border-color: #dee2e6;
  color: #0d2d4e;
}
#sort-select:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.2);
}

#load-more-wrap {
  padding-top: 2rem;
}

.result-card-list__img-col {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .result-card-list__img-col {
    width: 100%;
  }
}
.result-card-list__img-wrap {
  height: 100%;
  min-height: 180px;
  background: #e9ecef;
  overflow: hidden;
}
@media (max-width: 575px) {
  .result-card-list__img-wrap {
    height: 180px;
  }
}
.result-card-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-card-list__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: #e9ecef;
}
.result-card-list__summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-vc-date-weekend] [data-vc-date-btn] {
  color: var(--accent) !important;
}

[data-vc-date]:not([data-vc-date-weekend]) [data-vc-date-btn] {
  color: #1f628e !important;
}

[data-vc-date-disabled] [data-vc-date-btn] {
  opacity: 0.6 !important;
  color: #888 !important;
}

[data-vc-date-selected] [data-vc-date-btn] {
  color: #fff !important;
}

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.page-search {
  background: var(--bg);
}

/* SEARCH HEADER */
.search-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0 1.8rem;
}

.breadcrumb-nav .breadcrumb {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  background: none;
  padding: 0;
}

.breadcrumb-nav .breadcrumb-item a {
  color: var(--ink3);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-nav .breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--ink);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: var(--ink3);
  content: "›";
}

.search-header__title {
  color: #447187;
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 0.25rem;
}

.search-header__title em {
  font-style: italic;
  color: var(--accent);
}

.search-header__meta {
  font-size: 0.86rem;
  color: var(--ink2);
  margin-bottom: 1.2rem;
}

/* RE-SEARCH STICKY BAR */
.research-sticky {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.research {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 0.55rem;
}

.research__field {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border-radius: var(--r);
  padding: 0 0.7rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.research__field:focus-within {
  border-color: var(--accent);
}

.research__field i {
  color: var(--ink3);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.research__field input, .research__field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ff);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  width: 100%;
  color: var(--ink);
}

.research__btn {
  flex: 0 0 auto;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 0.55rem 1.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.research__btn:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width: 767px) {
  .research {
    flex-direction: column;
  }
  .research__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.research-sticky .research {
  background: #447187;
  border-color: rgba(255, 255, 255, 0.2);
}

.research-sticky .research__field {
  border-color: rgba(255, 255, 255, 0.25);
}

.research-sticky .sbox {
  background: #447187;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--rl);
  padding: 0.55rem;
}

.research-sticky .sbox__tabs {
  display: none;
}

.research-sticky .sbox__row {
  gap: 0.35rem;
}

.research-sticky .sbox__field {
  flex-basis: 130px;
}

.research-sticky .sbox__field input,
.research-sticky .sbox__field select,
.research-sticky .sbox__field-btn {
  font-size: 0.8rem;
}

.research-sticky .sbox__go {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}

.research-sticky .occupancy-panel,
.research-sticky .date-picker-wrap {
  bottom: calc(100% + 0.4rem);
  top: auto;
}

@media (max-width: 767px) {
  .research-sticky {
    position: static;
    box-shadow: none;
  }
  .research-sticky .sbox__field {
    flex-basis: 100%;
  }
  .research-sticky .sbox__row {
    flex-direction: column;
  }
  .research-sticky .sbox__go {
    width: 100%;
    justify-content: center;
  }
}
/* MAIN */
.search-main {
  padding: 2rem 0 4rem;
}

/* SIDEBAR FILTERS */
.filters__mobile-toggle {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.7rem;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  margin-bottom: 0.8rem;
  color: var(--ink);
  transition: all 0.2s;
}

.filters__mobile-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 991px) {
  .filters__body {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 1.2rem;
  }
  .filters__body.open {
    display: block;
  }
}
@media (min-width: 992px) {
  .filters__body {
    display: block !important;
  }
}
.fblock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.1rem;
  margin-bottom: 0.8rem;
}

.fblock__title {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.fblock__search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 0.7rem;
  transition: border-color 0.2s;
}

.fblock__search:focus-within {
  border-color: var(--accent);
}

.fblock__search i {
  color: var(--ink3);
  font-size: 0.82rem;
}

.fblock__search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ff);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  width: 100%;
}

.fblock__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fcheck {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: background 0.15s;
  font-size: 0.82rem;
  color: var(--ink);
  margin: 0;
}

.fcheck:hover {
  background: var(--accent-l);
}

.fcheck input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--border);
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--surface);
}

.fcheck input[type=checkbox]:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 4L5.5 10L2.5 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.fcheck span:first-of-type {
  flex: 1;
}

.fcheck__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink3);
  background: var(--bg);
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
}

.fcheck__star {
  display: flex;
  gap: 0.1rem;
  color: var(--gold);
  font-size: 0.72rem;
}

.fcheck--hidden {
  display: none !important;
}

.fblock__more {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.76rem;
  cursor: pointer;
  padding: 0.4rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}

.fblock__more:hover {
  gap: 0.45rem;
}

.filters__apply {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 0.7rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: background 0.2s;
}

.filters__apply:hover {
  background: var(--accent-h);
}

/* SORTING BAR */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 0.75rem 1.1rem;
  margin-bottom: 1rem;
}

.sort-bar__count {
  font-size: 0.86rem;
  color: var(--ink2);
}

.sort-bar__count strong {
  color: var(--ink);
}

.sort-bar__right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.sort-bar__label {
  font-size: 0.78rem;
  color: var(--ink3);
  white-space: nowrap;
}

.sort-bar__select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font-family: var(--ff);
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--bg);
  cursor: pointer;
}

.sort-bar__view {
  display: flex;
  gap: 0.2rem;
}

.sort-bar__view-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.9rem;
}

.sort-bar__view-btn.active, .sort-bar__view-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* RESULT CARDS (horizontal list view) */
.results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rcard-h-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rcard-h {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rcard-h:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.rcard-h-wrap:has(.rcard-h__panel.open) .rcard-h {
  border-radius: var(--rl) var(--rl) 0 0;
  transform: none;
}

.rcard-h__img {
  position: relative;
  width: 300px;
  min-height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.rcard-h__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.rcard-h__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s;
}

.rcard-h__slide.active {
  opacity: 1;
  position: relative;
}

.rcard-h__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.rcard-h__arrow:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.rcard-h__arrow--l {
  left: 0.5rem;
}

.rcard-h__arrow--r {
  right: 0.5rem;
}

.rcard-h__actions {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  z-index: 4;
  display: flex;
  gap: 0.3rem;
}

.rcard-h__act {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(20, 34, 59, 0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}

.rcard-h__act:hover, .rcard-h__act.active {
  background: var(--accent);
}

.rcard-h__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 4;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.66rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--rr);
  letter-spacing: 0.03em;
}

.rcard-h__badge--hot {
  background: var(--teal);
}

.rcard-h__fav {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--ink3);
  cursor: pointer;
  transition: all 0.2s;
}

.rcard-h__fav:hover, .rcard-h__fav.active {
  color: #e53e3e;
  background: #fff;
}

.rcard-h__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.4rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.rcard-h__top {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
}

.rcard-h__rec {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #fef3e2, #fde8d0);
  color: #c27522;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: var(--rr);
  white-space: nowrap;
  border: 1px solid rgba(212, 168, 58, 0.2);
}

.rcard-h__rec i {
  font-size: 0.72rem;
}

.rcard-h__stars {
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
  display: flex;
  gap: 0.1rem;
}

.rcard-h__name {
  font-family: var(--ffd);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #447187;
}

.rcard-h__loc {
  font-size: 0.78rem;
  color: #447187;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.rcard-h__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.7rem 0;
}

.rcard-h__tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--rr);
  background: var(--accent-l);
  color: var(--accent);
}

.rcard-h__tag--feat {
  background: #447187;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.rcard-h__promo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-l);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  margin: 0.5rem 0 0;
  align-self: flex-start;
}

.rcard-h__promo i {
  font-size: 0.7rem;
}

.rcard-h__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0.8rem;
  margin-top: 0.6rem;
  gap: 0.75rem;
}

.rcard-h__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.rcard-h__price-label {
  font-size: 0.68rem;
  color: var(--ink3);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.rcard-h__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.rcard-h__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--rr);
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
}

.rcard-h:hover .rcard-h__btn {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 101, 51, 0.3);
}

.rcard-h__panel {
  max-height: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--rl) var(--rl);
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.4rem;
}

.rcard-h__panel.open {
  max-height: 100%;
  padding: 1.2rem 1.4rem;
}

.rcard-h__panel-title {
  font-family: var(--ffd);
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.rcard-h__panel-title i {
  color: var(--accent);
  font-size: 0.9rem;
}

.rcard-h__panel-text {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--ink2);
  margin: 0;
}

.rcard-h__panel-text--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rcard-h__read-more {
  background: none;
  border: none;
  padding: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.rcard-h__gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.rcard-h__gallery img {
  flex: 0 0 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.rcard-h__gallery img:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

@media (max-width: 767px) {
  .rcard-h {
    flex-direction: column;
  }
  .rcard-h__img {
    width: 100%;
    height: 200px;
    min-height: auto;
  }
  .rcard-h__gallery img {
    flex: 0 0 120px;
    height: 85px;
  }
}
/* INFINITE SCROLL */
.inf-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem 0;
  color: var(--ink3);
  font-size: 0.86rem;
}

.inf-end {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem 0;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 600;
}

/* === DETAIL PAGE === */
.page-detail {
  background: var(--bg);
}

/* ═══ HOTEL HEADER ═══ */
.dh {
  padding: 5rem 0 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.dh__name {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--ink);
  margin: 0 0 0.2rem;
  letter-spacing: 0.02em;
}

.dh__stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  display: flex;
  gap: 0.12rem;
}

.dh__loc {
  font-size: 0.86rem;
  color: var(--ink2);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dh__loc i {
  color: var(--accent);
}

/* ═══ MOSAIC GALLERY ═══ */
.mosaic {
  background: var(--surface);
  padding: 1rem 0 0;
}

.mosaic__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 0.5rem;
  border-radius: var(--rl);
  overflow: hidden;
}

.mosaic__big {
  grid-row: 1/3;
  grid-column: 1/2;
}

.mosaic__sm:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}

.mosaic__sm:nth-child(3) {
  grid-row: 1;
  grid-column: 3;
}

.mosaic__wide {
  grid-row: 2;
  grid-column: 2/4;
}

.mosaic__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.mosaic__grid img:hover {
  transform: scale(1.03);
}

.mosaic__overlay {
  position: relative;
}

.mosaic__more {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--rr);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  .mosaic__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 120px;
  }
  .mosaic__big {
    grid-column: 1/3;
    grid-row: 1;
  }
  .mosaic__sm:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
  }
  .mosaic__sm:nth-child(3) {
    display: none;
  }
  .mosaic__wide {
    grid-row: auto;
    grid-column: 2;
  }
}
/* Tabs */
.detail-tabs {
  display: flex;
  gap: 0.4rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-tab {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--rr);
  padding: 0.45rem 1.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.detail-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.detail-tab.active {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--ink);
}

/* ═══ STICKY SEARCH BAR ═══ */
.detail-sticky-bar {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.detail-sticky-bar .sbox {
  background: #447187;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--rl);
  padding: 0.55rem;
}

.detail-sticky-bar .sbox__tabs {
  display: none;
}

.detail-sticky-bar .sbox__row {
  gap: 0.35rem;
}

.detail-sticky-bar .sbox__field {
  flex-basis: 130px;
}

.detail-sticky-bar .sbox__field input,
.detail-sticky-bar .sbox__field select,
.detail-sticky-bar .sbox__field-btn {
  font-size: 0.8rem;
}

.detail-sticky-bar .sbox__go {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}

.detail-sticky-bar .occupancy-panel,
.detail-sticky-bar .date-picker-wrap {
  bottom: calc(100% + 0.4rem);
  top: auto;
}

@media (max-width: 767px) {
  .detail-sticky-bar {
    position: static;
    box-shadow: none;
  }
  .detail-sticky-bar .sbox__field {
    flex-basis: 100%;
  }
  .detail-sticky-bar .sbox__row {
    flex-direction: column;
  }
  .detail-sticky-bar .sbox__go {
    width: 100%;
    justify-content: center;
  }
}
/* ═══ MAIN LAYOUT ═══ */
.detail-main {
  padding: 2rem 0 4rem;
}

.sec-title-detail {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 1.2rem;
}

.sec-title-detail i {
  color: var(--accent);
}

/* ═══ ROOM BLOCKS ═══ */
.room-block {
  margin-bottom: 2.2rem;
}

/* ═══ ROOM CARDS ═══ */
.room-card {
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.room-card--a {
  background: #f7fafd;
}

.room-card--b {
  background: #fdf7f3;
}

.room-card--selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 101, 51, 0.12);
  background: #fff;
}

.room-card--selected .room-card__name {
  color: var(--accent);
}

.room-card__header {
  display: grid;
  grid-template-columns: 2fr 1.2fr auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.3rem;
}

.room-card__name {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.2rem;
  color: var(--ink);
  transition: color 0.2s;
}

.room-card__treat {
  font-size: 0.76rem;
  color: var(--ink2);
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1.4;
}

.room-card__treat i {
  color: var(--accent);
  margin-top: 0.12rem;
}

.room-card__cond {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.room-card__cancel {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.room-card__cancel--free {
  color: var(--teal);
}

.room-card__cancel i {
  font-size: 0.85rem;
}

.room-card__avail-badge {
  background: var(--teal);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--rr);
  white-space: nowrap;
}

.room-card__pricing {
  text-align: right;
}

.room-card__price-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink3);
}

.room-card__price {
  font-family: var(--ffd);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
}

.room-card__btn {
  background: var(--surface);
  color: var(--ink);
  border: 2px solid var(--border);
  border-radius: var(--rr);
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.room-card__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-l);
}

.room-card__btn--active {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

@media (max-width: 991px) {
  .room-card__header {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .room-card__info {
    grid-column: 1/-1;
  }
  .room-card__action {
    grid-column: 1/-1;
    text-align: center;
  }
  .room-card__btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .room-card__header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .room-card__pricing {
    text-align: left;
  }
}
.room-card__details {
  border-top: 1px solid var(--border);
}

.room-card__toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.65rem 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
  transition: color 0.2s;
}

.room-card__toggle:hover {
  color: var(--accent-h);
}

.room-card__details-body {
  padding: 0 1.3rem 1.1rem;
}

.room-card__details-body ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: var(--ink2);
  line-height: 1.7;
}

.room-card__details-body li {
  margin-bottom: 0.2rem;
}

.room-card__cond-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink3);
}

.room-card__cond small {
  font-size: 0.68rem;
  color: var(--ink3);
}

.room-card__avail {
  display: flex;
  align-items: center;
}

.room-card--date .room-card__header {
  grid-template-columns: 1fr 1fr auto;
}

/* Promo banner */
.room-promo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-l);
  border: 1px solid rgba(27, 138, 122, 0.15);
  border-radius: var(--rl);
  padding: 0.9rem 1.2rem;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
}

.room-promo i {
  font-size: 1rem;
}

.room-promo a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
}

/* ═══ EXTRA / CONFIRM CARDS ═══ */
.extra-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: var(--rl);
  margin-bottom: 0.45rem;
  border: 1px solid var(--border);
  background: #f7fafd;
  font-size: 0.88rem;
  transition: all 0.25s;
}

.extra-card--selected {
  border-color: var(--accent);
  background: #fff8f5;
}

.extra-card__name {
  flex: 1;
  font-weight: 600;
  color: var(--ink);
}

.extra-card__onsite {
  font-size: 0.72rem;
  color: var(--ink2);
  white-space: nowrap;
}

.extra-card__price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.extra-card__btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--rr);
  padding: 0.28rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ink2);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.extra-card__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.extra-card__btn--active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-l);
}

.alt-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-l);
  border: 1px solid rgba(232, 101, 51, 0.2);
  border-radius: var(--rr);
  padding: 0.2rem 0.55rem;
  margin-top: 0.35rem;
  align-self: flex-end;
}

.alt-date-badge i {
  font-size: 0.75rem;
}

/* ═══ CART SIDEBAR ═══ */
.cart {
  position: sticky;
  top: 140px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.4rem;
}

.cart__title {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.cart__title i {
  color: var(--accent);
}

.cart__hotel {
  margin-bottom: 0.8rem;
}

.cart__hotel strong {
  color: var(--accent);
  font-size: 0.92rem;
}

.cart__hotel p {
  font-size: 0.8rem;
  color: var(--ink2);
  margin: 0.2rem 0 0;
}

.cart__room {
  min-height: 60px;
}

.cart__empty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink3);
  font-size: 0.82rem;
  font-style: italic;
  padding: 0.8rem;
  background: var(--bg);
  border-radius: var(--r);
}

.cart__empty i {
  font-size: 1.1rem;
}

.cart__room-filled {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.6rem 0.8rem;
  background: var(--accent-l);
  border-radius: var(--r);
  border: 1px solid rgba(232, 101, 51, 0.12);
}

.cart__room-line {
  font-size: 0.8rem;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart__room-line i {
  color: var(--accent);
  font-size: 0.82rem;
  width: 18px;
  text-align: center;
}

.cart__room-line strong {
  color: var(--ink);
}

.cart__block {
  margin-bottom: 0.7rem;
}

.cart__block-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart__block-label i {
  color: var(--accent);
  font-size: 0.9rem;
}

.cart hr {
  border-color: var(--border);
  margin: 1rem 0;
}

.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.cart__total span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.cart__total strong {
  font-family: var(--ffd);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
}

.cart__cta {
  width: 100%;
  background: #f5c518;
  color: var(--navy);
  border: none;
  border-radius: var(--rl);
  padding: 0.8rem;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}

.cart__cta:hover:not(:disabled) {
  background: #e6b800;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
}

.cart__cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ═══ ROOMSGROUP CARD ═══ */
.room-name-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.15rem;
}

.room-name-list__item {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.35;
}

.room-name-list__item + .room-name-list__item::before {
  content: "+ ";
  color: var(--ink3);
  font-family: var(--ff);
  font-weight: 400;
  font-size: 0.76rem;
}

.room-card__avail-badge--ok {
  background: var(--teal);
}

.room-card__avail-badge--rq {
  background: var(--gold);
  color: var(--navy);
}

.room-card__policy-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.78rem;
  color: var(--ink2);
  line-height: 1.8;
}

.pick-notes-btn {
  background: none;
  border: none;
  color: var(--ink3);
  cursor: pointer;
  padding: 0.15rem 0.3rem;
  font-size: 0.95rem;
  line-height: 1;
  transition: color 0.2s;
  margin-left: 0.25rem;
}

.pick-notes-btn:hover {
  color: var(--accent);
}

/* ── Accommodation detail trigger link ── */
.acc-modal-trigger {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  margin-top: 0.25rem;
  transition: color 0.2s;
  text-decoration: none;
}

.acc-modal-trigger:hover {
  color: var(--accent-h);
}

.acc-modal-trigger i {
  font-size: 0.82rem;
}

/* ── Accommodation detail modal ── */
.acc-modal__head {
  border-bottom: 2px solid var(--border);
  padding: 1rem 1.4rem 0.75rem;
}

.acc-modal__title {
  font-family: var(--ffd);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
}

.acc-modal__body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.acc-modal__carousel {
  height: 320px;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--navy-l);
}

.acc-modal__carousel-img {
  object-fit: cover;
  height: 320px;
  border-radius: var(--rl);
}

.acc-modal__carousel-ctrl {
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.acc-modal__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.acc-modal__thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--r);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.acc-modal__thumb:hover {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--accent);
}

.acc-modal__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin-bottom: 0.9rem;
}

.acc-modal__amenity {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--ink2);
}

.acc-modal__amenity-ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.acc-modal__amenity-ico-bi {
  font-size: 0.85rem;
  color: var(--teal);
}

.acc-modal__descs {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.65;
}

.acc-modal__descs .acc-modal__desc + .acc-modal__desc {
  margin-top: 0.6rem;
}

@media (max-width: 767px) {
  .acc-modal__carousel {
    height: 220px;
  }
  .acc-modal__carousel-img {
    height: 220px;
  }
}
/* ═══ FLIGHT PICK CARD ═══ */
.pick-flight .room-card__header {
  grid-template-columns: 2fr auto 1fr auto;
}

.pick-flight__carrier {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink3);
  margin-bottom: 0.35rem;
}

.pick-flight__carrier i {
  color: var(--accent);
}

.pick-flight__segment {
  margin-bottom: 0.2rem;
}

.pick-flight__segment + .pick-flight__segment {
  border-top: 1px dashed var(--border);
  padding-top: 0.2rem;
  margin-top: 0.2rem;
}

.pick-flight__route {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.pick-flight__arrow {
  font-size: 0.7rem;
  color: var(--ink3);
}

.pick-flight__times {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--ink2);
  margin-top: 0.1rem;
}

.pick-flight__times i {
  color: var(--accent);
  font-size: 0.72rem;
}

.pick-flight__baggage {
  font-size: 0.72rem;
  color: var(--ink3);
}

.pick-flight__included {
  font-family: var(--ffd);
  font-weight: 700;
  color: var(--teal);
  font-size: 0.95rem;
}

/* ═══ HOTEL / ACTIVITY PICK CARD ═══ */
.pick-hotel .room-card__info {
  display: flex !important;
  flex-direction: row;
  gap: 0.8rem;
  align-items: flex-start;
}

.pick-hotel__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
}

.pick-hotel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pick-hotel__body {
  flex: 1;
  min-width: 0;
}

.pick-hotel__stars {
  color: var(--gold);
  font-size: 0.68rem;
  margin: 0.1rem 0 0.2rem;
  display: flex;
  gap: 0.1rem;
}

/* ═══ CART ITEM (rich sidebar) ═══ */
.cart__item {
  padding: 0.55rem 0.7rem;
  border-radius: var(--r);
  margin-bottom: 0.4rem;
  border: 1px solid rgba(232, 101, 51, 0.15);
}

.cart__item--confirmed {
  background: var(--accent-l);
  border-color: rgba(232, 101, 51, 0.2);
}

.cart__item--pending {
  background: #f7fafd;
  border-color: var(--border);
}

.cart__item-header {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.12rem;
}

.cart__item-header i {
  color: var(--accent);
  font-size: 0.82rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.cart__item-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.cart__item-sub {
  font-size: 0.72rem;
  color: var(--ink2);
  padding-left: 1.2rem;
  margin-bottom: 0.1rem;
}

.cart__item-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  padding-left: 1.2rem;
}

/* ═══ PICK HISTORY ═══ */
/* .pick-history{border-left:3px solid var(--accent);padding-left:1rem} */
.history-step {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.history-step__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.history-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.history-step__label {
  font-weight: 600;
  font-size: 0.9rem;
  flex: 1;
}

.history-step__edit {
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 0.25rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  cursor: pointer;
}
.history-step__edit:hover {
  background: var(--accent);
  color: #fff;
}

.history-pick-item {
  font-size: 0.875rem;
  padding: 0.2rem 0;
  border-top: 1px solid #e9ecef;
}
.history-pick-item:first-child {
  border-top: none;
}

/* ═══ DESCRIPTION SECTION ═══ */
.detail-desc-section {
  margin-top: 1rem;
}

.detail-desc-section h5 {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.detail-desc-section p {
  font-size: 0.86rem;
  color: var(--ink2);
  line-height: 1.72;
}

.detail-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.detail-services span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--ink2);
}

.detail-services span i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* ============================================================
   ULISSE TRAVEL — cart.css
   Checkout / cart page
   ============================================================ */
.page-cart {
  background: var(--bg);
}

/* ═══ STEPPER ═══ */
.cart-stepper {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 5.2rem 0 1.2rem;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  z-index: 1;
}

.stepper__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--ink3);
  background: var(--surface);
  transition: all 0.3s;
}

.stepper__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink3);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.stepper__step--done .stepper__num {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.stepper__step--done .stepper__label {
  color: var(--teal);
}

.stepper__step--active .stepper__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(232, 101, 51, 0.15);
}

.stepper__step--active .stepper__label {
  color: var(--accent);
  font-weight: 800;
}

.stepper__line {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 0.3rem;
  margin-bottom: 1.2rem;
}

.stepper__line--done {
  background: var(--teal);
}

.stepper__line--active {
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

/* ═══ MAIN ═══ */
.cart-main {
  padding: 2rem 0 4rem;
}

/* Content blocks */
.cblock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.6rem;
  margin-bottom: 1rem;
}

.cblock__title {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.cblock__title i {
  color: var(--accent);
  font-size: 1rem;
}

.cblock__sub {
  font-size: 0.82rem;
  color: var(--ink2);
  margin: -0.5rem 0 1rem;
  line-height: 1.5;
}

/* ═══ BOOKING SUMMARY ═══ */
.booking-summary {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.booking-summary__img {
  width: 180px;
  flex-shrink: 0;
  border-radius: var(--r);
  overflow: hidden;
}

.booking-summary__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-summary__info h3 {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.booking-summary__stars {
  color: var(--gold);
  font-size: 0.7rem;
  display: inline-flex;
  gap: 0.06rem;
}

.booking-summary__loc {
  font-size: 0.8rem;
  color: var(--ink2);
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.booking-summary__loc i {
  color: var(--accent);
  font-size: 0.75rem;
}

.booking-summary__dates {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.booking-summary__dates > div {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  font-size: 0.76rem;
  color: var(--ink2);
}

.booking-summary__dates > div i {
  color: var(--accent);
  font-size: 0.8rem;
}

.booking-summary__dates > div strong {
  color: var(--ink);
  font-size: 0.84rem;
}

@media (max-width: 575px) {
  .booking-summary {
    flex-direction: column;
  }
  .booking-summary__img {
    width: 100%;
    height: 160px;
  }
}
.booking-rooms {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-room {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.booking-room__badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--rr);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.booking-room__detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.booking-room__detail strong {
  font-size: 0.86rem;
}

.booking-room__detail span {
  font-size: 0.76rem;
  color: var(--ink2);
}

.booking-room__cancel {
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.booking-room__cancel i {
  font-size: 0.75rem;
}

.booking-room__price {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 575px) {
  .booking-room {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
/* ═══ TRAVELER FORMS ═══ */
.traveler {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem;
  margin-bottom: 0.7rem;
}

.traveler__heading {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.traveler__heading i {
  color: var(--accent);
}

.traveler__heading small {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink3);
}

.cf__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink3);
  margin-bottom: 0.25rem;
}

.cf__input {
  display: block;
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-family: var(--ff);
  font-size: 0.84rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cf__input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 101, 51, 0.08);
}

.cf__input::placeholder {
  color: var(--ink3);
}

.cf__textarea {
  display: block;
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-family: var(--ff);
  font-size: 0.84rem;
  color: var(--ink);
  background: var(--surface);
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
}

.cf__textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 101, 51, 0.08);
}

.cf__hint {
  display: block;
  font-size: 0.72rem;
  color: var(--ink3);
  margin-top: 0.4rem;
}

.cf__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--ink2);
  cursor: pointer;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.cf__check input[type=checkbox] {
  margin-top: 0.25rem;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cf__check a {
  color: var(--accent);
  font-weight: 600;
}

/* ═══ PAYMENT OPTIONS ═══ */
.pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pay-opt {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.pay-opt:hover {
  border-color: var(--accent);
  background: var(--accent-l);
}

.pay-opt--active {
  border-color: var(--accent);
  background: var(--accent-l);
  box-shadow: 0 0 0 3px rgba(232, 101, 51, 0.08);
}

.pay-opt input[type=radio] {
  display: none;
}

.pay-opt__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.pay-opt--active .pay-opt__radio {
  border-color: var(--accent);
}

.pay-opt--active .pay-opt__radio::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.pay-opt__body {
  flex: 1;
}

.pay-opt__body strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.pay-opt__body span {
  font-size: 0.76rem;
  color: var(--ink2);
}

.pay-opt__tag {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--rr);
  background: var(--navy-l);
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.pay-opt__tag--best {
  background: var(--gold-l);
  color: #a07c1c;
}

.pay-opt__logo {
  height: 28px;
  flex-shrink: 0;
  border-radius: 6px;
}

.pay-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem;
  margin-top: 0.5rem;
}

.pay-card__icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--ink3);
}

.pay-card__icons img {
  height: 22px;
  opacity: 0.6;
}

.pay-card__icons i {
  color: var(--teal);
  font-size: 0.85rem;
}

/* ═══ SUBMIT BUTTON ═══ */
.cart-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--rl);
  padding: 1rem;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cart-submit:hover:not(:disabled) {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 101, 51, 0.3);
}

.cart-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ═══ SIDEBAR ═══ */
.cart-sidebar {
  position: sticky;
  top: 84px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.4rem;
}

.cart-sidebar__title {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.cart-sidebar__title i {
  color: var(--accent);
}

.cart-sidebar__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
}

.cart-sidebar__row span {
  color: var(--ink2);
  flex: 1;
}

.cart-sidebar__row strong {
  white-space: nowrap;
  color: var(--ink);
}

.cart-sidebar__row--sub {
  font-weight: 600;
}

.cart-sidebar__row--disc span {
  color: var(--teal);
}

.cart-sidebar__row--disc strong {
  color: var(--teal);
}

.cart-sidebar hr {
  border-color: var(--border);
  margin: 0.7rem 0;
}

.cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.cart-sidebar__total span {
  font-size: 1.05rem;
  font-weight: 700;
}

.cart-sidebar__total strong {
  font-family: var(--ffd);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.cart-sidebar__promo {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.cart-sidebar__promo .cf__input {
  flex: 1;
  padding: 0.5rem 0.7rem;
  font-size: 0.78rem;
  border-radius: 10px;
}

.cart-sidebar__promo-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  font-size: 0.76rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cart-sidebar__promo-btn:hover {
  background: var(--ink);
}

.cart-sidebar__help {
  background: var(--bg);
  border-radius: var(--r);
  padding: 0.8rem;
  font-size: 0.78rem;
  color: var(--ink2);
  margin-bottom: 0.8rem;
  text-align: center;
}

.cart-sidebar__help p {
  margin: 0 0 0.2rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.cart-sidebar__help .contacts-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
}

.cart-sidebar__help a {
  background-color: var(--accent);
  font-weight: 700;
  color: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: var(--rr);
  text-decoration: none;
  transition: background-color 0.2s;
}

.cart-sidebar__secure {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--teal-l);
  border: 1px solid rgba(27, 138, 122, 0.12);
  border-radius: var(--r);
  padding: 0.7rem 0.8rem;
}

.cart-sidebar__secure > i {
  color: var(--teal);
  font-size: 1.3rem;
  margin-top: 0.1rem;
}

.cart-sidebar__secure strong {
  display: block;
  font-size: 0.78rem;
  color: var(--teal);
}

.cart-sidebar__secure span {
  font-size: 0.7rem;
  color: var(--ink2);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 767px) {
  .stepper__label {
    font-size: 0.58rem;
  }
  .stepper__num {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
  .cblock {
    padding: 1.1rem;
  }
}
/* ═══ SITELOADER TOAST ═══ */
.siteloader-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 0.9rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  color: var(--ink);
  max-width: 320px;
  animation: toastIn 0.25s ease;
}

.siteloader-toast i {
  font-size: 1.1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

.siteloader-toast strong {
  display: block;
  font-weight: 700;
}

.siteloader-toast span {
  font-size: 0.78rem;
  color: var(--ink2);
}

.siteloader-toast--success i {
  color: var(--teal);
}

.siteloader-toast--error i {
  color: #c0392b;
}

.siteloader-toast--loading i {
  color: var(--accent);
  animation: spin 0.9s linear infinite;
}

.siteloader-toast__close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--ink3);
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 0.5rem;
  flex-shrink: 0;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* topnav active area (logged in) */
.topnav__area--active {
  color: var(--accent) !important;
  font-weight: 700;
}

.blog-page-hero {
  position: relative;
  background: var(--navy);
  padding: 5rem 0 0;
  overflow: hidden;
}
.blog-page-hero .blog-hero-title {
  font-family: var(--ffd);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-page-hero .blog-hero-title em {
  color: var(--accent);
  font-style: normal;
}
.blog-page-hero .blog-hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.blog-page-hero .blog-hero-wave {
  display: block;
  width: 100%;
  height: 60px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(20, 34, 59, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(20, 34, 59, 0.14);
}
.blog-card .blog-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}
.blog-card .blog-card-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4070 100%);
}
.blog-card .blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
}
.blog-card .blog-card-title {
  font-family: var(--ffd);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--ink2);
  flex: 1;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .blog-card-date {
  font-size: 0.78rem;
  color: var(--ink3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.blog-card .blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: text-decoration 0.15s;
}
.blog-card:hover .blog-card-link {
  text-decoration: underline;
}

.blog-detail-article {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 5rem;
}

.blog-detail-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--rl);
}

.blog-detail-title {
  font-family: var(--ffd);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.blog-detail-date {
  display: block;
  font-size: 0.85rem;
  color: var(--ink3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-detail-body {
  font-size: 1.0625rem;
  color: var(--ink2);
  line-height: 1.85;
}
.blog-detail-body p {
  margin-bottom: 1.25rem;
}
.blog-detail-body h2, .blog-detail-body h3, .blog-detail-body h4 {
  font-family: var(--ffd);
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.blog-detail-body h2 {
  font-size: 1.6rem;
}
.blog-detail-body h3 {
  font-size: 1.3rem;
}
.blog-detail-body a {
  color: var(--accent);
  text-decoration: underline;
}
.blog-detail-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--accent-l);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--ink);
}
.blog-detail-body img {
  max-width: 100%;
  border-radius: var(--r);
  margin: 1rem 0;
}

.blog-detail-back {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-detail-back:hover {
  color: var(--accent);
}