:root {
  --navy: #241733;
  --navy-light: #33203f;
  --navy-lighter: #3d2650;
  --teal: #e6007e;
  --teal-dark: #b8005f;
  --sunset: #ff5a00;
  --sunset-dark: #d94800;
  --gold: #ffffff;
  --bg: #fff7fb;
  --surface: #ffffff;
  --text: #241733;
  --text-muted: #6f6178;
  --border: #f1e3ec;
  --badge: #ff5a00;
  --star: #ffb400;
  --radius: 14px;
  --shadow: 0 4px 14px rgba(43, 15, 58, 0.08);
  --shadow-hover: 0 12px 30px rgba(43, 15, 58, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); box-shadow: var(--shadow-hover); }

.btn-accent { background: var(--sunset); color: #fff; }
.btn-accent:hover { background: var(--sunset-dark); box-shadow: var(--shadow-hover); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  height: 92px;
  width: 92px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 10px 28px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 6px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.site-header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-header nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  margin-left: 22px;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.site-header nav a:hover,
.site-header nav a.active { color: var(--teal); }

.site-header nav a.nav-cta {
  margin-left: 22px;
  background: var(--sunset);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.site-header nav a.nav-cta:hover { background: var(--sunset-dark); color: #fff; }

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 22px;
}

.nav-dropdown > a { margin-left: 0; display: inline-flex; align-items: center; gap: 4px; }

.nav-dropdown .caret { font-size: 0.65em; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  max-height: 380px;
  overflow-y: auto;
  box-shadow: 0 16px 34px rgba(0,0,0,0.4);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  margin-left: 0;
  padding: 8px 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  line-height: 1.35;
}

.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--teal); }

/* Page hero (interior pages) */
.page-hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 64px 24px 56px;
}

.page-hero h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Hero (index page) */
.hero {
  position: relative;
  text-align: center;
  padding: 90px 24px 80px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.hero h1 span { color: var(--teal); }

.hero p {
  max-width: 580px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shared section headings */
.section-heading { margin-bottom: 32px; }
.section-heading.center { text-align: center; }

.section-heading h2 {
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.section-heading p { color: var(--text-muted); }

.section-link { text-align: center; margin-top: 34px; }

/* Deals section / cards */
.deals { padding: 64px 24px; }
.deals.alt { background: var(--surface); }

.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.deal-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border);
}

.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.deal-photo {
  position: relative;
  height: 190px;
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
}

.deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--badge);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 11px;
  border-radius: 999px;
}

.deal-badge.badge-navy { background: var(--navy); }

.deal-content { padding: 16px 18px 20px; }
.deal-content h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--text); }

.deal-location { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }

.deal-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.deal-rating .stars { color: var(--star); letter-spacing: 1px; }

.deal-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.price-old { color: var(--text-muted); text-decoration: line-through; font-size: 0.9rem; }
.price-new { color: var(--text); font-weight: 800; font-size: 1.3rem; }
.price-unit { color: var(--text-muted); font-size: 0.85rem; }

.deal-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.deals-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
  margin-top: 20px;
  text-align: center;
}

/* Deals browse layout: filter sidebar + result list */
.deals-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 820px) {
  .deals-layout { grid-template-columns: 1fr; }
}

.filter-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  position: sticky;
  top: 90px;
}

.filter-panel h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.filter-panel h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin: 20px 0 10px;
  font-family: 'Inter', sans-serif;
}

.filter-panel h4:first-of-type { margin-top: 18px; }

.price-inputs { display: flex; gap: 10px; }

.filter-panel input[type="text"],
.filter-panel input[type="number"] {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--text);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 9px;
}

.filter-check input { accent-color: var(--teal); width: 15px; height: 15px; }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.results-count { font-weight: 700; color: var(--navy); font-size: 1.05rem; }

.sort-select {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
}

.deal-row {
  display: grid;
  grid-template-columns: 210px 1fr 170px;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deal-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

@media (max-width: 700px) {
  .deal-row { grid-template-columns: 1fr; }
}

.deal-row-photo {
  height: 150px;
  border-radius: 10px;
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
}

.deal-row-content h3 { font-size: 1.08rem; color: var(--text); margin-bottom: 3px; }
.deal-row-content .deal-location { margin-bottom: 6px; }
.deal-row-content .deal-rating { margin-bottom: 10px; }
.deal-row-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; line-height: 1.5; }

.amenity-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.amenity-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.deal-row-price {
  text-align: right;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

@media (max-width: 700px) {
  .deal-row-price { text-align: left; border-left: none; padding-left: 0; }
}

.deal-row-price .price-old { display: block; }
.deal-row-price .price-new { display: block; font-size: 1.4rem; margin: 2px 0; }
.deal-row-price .price-unit { display: block; margin-bottom: 12px; }
.deal-row-price .btn { padding: 10px 20px; font-size: 0.88rem; }

/* Destinations grid */
.destinations { padding: 64px 24px 90px; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.dest-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border);
}

.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.dest-card-photo {
  height: 170px;
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
}

.dest-card-body { padding: 16px 18px 18px; }

.dest-card-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.dest-card-loc { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 8px; }

.dest-card-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.dest-card-count { color: var(--teal-dark); font-size: 0.8rem; font-weight: 600; }

/* Gradient themes per destination (fallback layer shown until a real photo is added) */
.grad-cancun      { --grad: linear-gradient(135deg, #0a6e66, #1fc8c0 55%, #0f9b8e); }
.grad-cabo        { --grad: linear-gradient(135deg, #c2185b, #ff7e5f 55%, #feb47b); }
.grad-tahiti      { --grad: linear-gradient(135deg, #16213e, #1a2980 55%, #26d0ce); }
.grad-fiji        { --grad: linear-gradient(135deg, #0f2027, #2c5364 60%, #00c9a7); }
.grad-hawaii      { --grad: linear-gradient(135deg, #7b1f1f, #ff512f 55%, #0f9b8e); }
.grad-bahamas     { --grad: linear-gradient(135deg, #0072ff, #00c6ff 60%, #7de2fc); }
.grad-puntacana   { --grad: linear-gradient(135deg, #e0527a, #f7971e 55%, #ffd200); }
.grad-rivieramaya { --grad: linear-gradient(135deg, #134e4a, #2dd4bf 55%, #99f6e4); }
.grad-tulum       { --grad: linear-gradient(135deg, #7c2d12, #ea580c 55%, #fdba74); }
.grad-cozumel     { --grad: linear-gradient(135deg, #0c4a6e, #0ea5e9 55%, #7dd3fc); }
.grad-mazatlan    { --grad: linear-gradient(135deg, #78350f, #f59e0b 55%, #fde68a); }
.grad-jamaica     { --grad: linear-gradient(135deg, #14532d, #16a34a 55%, #facc15); }
.grad-aruba       { --grad: linear-gradient(135deg, #155e75, #22d3ee 55%, #a5f3fc); }
.grad-costarica   { --grad: linear-gradient(135deg, #052e16, #15803d 55%, #86efac); }
.grad-puertorico  { --grad: linear-gradient(135deg, #7c3aed, #2563eb 55%, #93c5fd); }
.grad-stmartin    { --grad: linear-gradient(135deg, #1e3a8a, #3b82f6 55%, #bfdbfe); }
.grad-florida     { --grad: linear-gradient(135deg, #831843, #ec4899 55%, #5eead4); }
.grad-antigua     { --grad: linear-gradient(135deg, #0e7490, #22d3ee 55%, #cffafe); }
.grad-cayman      { --grad: linear-gradient(135deg, #075985, #38bdf8 55%, #e0f2fe); }
.grad-caribbean   { --grad: linear-gradient(135deg, #0c4a6e, #0ea5e9 55%, #7dd3fc); }
.grad-alaska      { --grad: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.grad-mediterranean { --grad: linear-gradient(135deg, var(--teal), var(--teal-dark)); }

/* Detail page hero banner */
.dest-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
}

.dest-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,23,51,0.95) 0%, rgba(60,20,60,0.5) 40%, rgba(60,20,60,0) 70%);
}

.dest-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px 32px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.dest-hero-content .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.dest-hero-content h1 { font-size: clamp(2rem, 5vw, 2.8rem); }

/* Detail page body */
.dest-body { padding: 44px 24px 90px; }

.back-link {
  display: inline-block;
  color: var(--teal-dark);
  text-decoration: none;
  margin-bottom: 26px;
  font-size: 0.95rem;
}

.back-link:hover { text-decoration: underline; }

.dest-body .tagline {
  font-size: 1.15rem;
  color: var(--sunset-dark);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 16px;
}

.dest-body .description {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 720px;
  margin-bottom: 38px;
}

.dest-body h2 { font-size: 1.35rem; margin-bottom: 18px; color: var(--navy); }

.resort-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 900px;
}

.resort-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.96rem;
  color: var(--text-muted);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resort-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.resort-list-photo {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.resort-list-body { padding: 16px 18px; }

.resort-list li strong {
  display: block;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.03rem;
  margin-bottom: 4px;
}

/* Trust badges (About page) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  text-align: center;
}

.trust-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.trust-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.trust-card p { color: var(--text-muted); font-size: 0.9rem; }

/* About page content */
.about-block { padding: 64px 24px; }
.about-block .container { max-width: 800px; }
.about-block p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.02rem; }
.about-block h2 { color: var(--navy); margin-bottom: 16px; font-size: 1.6rem; }

/* Flight search */
.flight-search {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: end;
  margin-top: -46px;
  position: relative;
  z-index: 2;
}

.flight-search label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.flight-search input,
.flight-search select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text);
  font-family: inherit;
}

.flight-search .btn { width: 100%; padding: 11px 20px; }

.flight-results { padding: 90px 24px 64px; }

.flight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.flight-route { display: flex; align-items: center; gap: 14px; }
.flight-route .city { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.flight-route .arrow { color: var(--teal); font-size: 1.2rem; }
.flight-meta { color: var(--text-muted); font-size: 0.85rem; }
.flight-price { text-align: right; }
.flight-price .price-new { font-size: 1.25rem; }

/* Contact page */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 64px 24px 90px;
}

@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 16px;
}

.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { margin-top: 22px; width: 100%; }

.contact-info {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
}

.contact-info h3 { font-family: 'Playfair Display', serif; margin-bottom: 6px; }
.contact-info p { color: rgba(255,255,255,0.75); margin-bottom: 22px; font-size: 0.95rem; }

.contact-item { margin-bottom: 20px; }
.contact-item .label { color: var(--teal); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-item .value { font-size: 1rem; }

/* Resort detail / booking page */
.resort-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 260px;
}

.resort-gallery-tile {
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
}

.resort-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  padding: 40px 24px 90px;
  align-items: start;
}

@media (max-width: 820px) {
  .resort-layout { grid-template-columns: 1fr; }
}

.resort-main h1 { font-size: 1.9rem; color: var(--navy); margin-bottom: 6px; }
.resort-location { color: var(--text-muted); margin-bottom: 10px; }
.resort-main .deal-rating { margin-bottom: 22px; }

.tabs-nav {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 2px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-family: inherit;
}

.tab-btn.active { color: var(--teal-dark); border-bottom-color: var(--teal); }

.tab-panel { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

.room-list { list-style: none; max-width: 440px; }
.room-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.review-card {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.review-card .stars { color: var(--star); margin-left: 8px; }
.review-card p { margin-top: 6px; }

.booking-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.booking-widget .price-old { margin-bottom: 0; }
.booking-widget .price-new { font-size: 1.7rem; margin-bottom: 2px; }
.booking-widget .deal-meta { margin-bottom: 16px; }

.booking-widget label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  font-weight: 600;
  margin: 14px 0 6px;
}

.booking-widget select,
.booking-widget input[type="date"] {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
}

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

.stepper button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--navy);
}

.stepper-label { color: var(--text-muted); font-size: 0.85rem; }

.widget-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 18px;
  padding-top: 14px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--navy);
}

.widget-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }
#added-msg { color: var(--teal-dark); font-weight: 600; }

/* Cart page */
.breadcrumb { color: var(--text-muted); font-size: 0.88rem; margin: 24px 0; }
.breadcrumb a { color: var(--teal-dark); text-decoration: none; }

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  padding-bottom: 90px;
  align-items: start;
}

@media (max-width: 820px) {
  .cart-layout { grid-template-columns: 1fr; }
}

.cart-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 16px;
}

@media (max-width: 560px) {
  .cart-item { grid-template-columns: 1fr; }
}

.cart-item-photo {
  height: 90px;
  border-radius: 8px;
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
}

.cart-item-content h3 { font-size: 1rem; color: var(--text); margin-bottom: 3px; }
.cart-item-price { text-align: right; }
.cart-item-price strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.1rem; }

.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.cart-summary h3 { color: var(--navy); margin-bottom: 16px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.summary-total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.promo-row { display: flex; gap: 8px; margin: 14px 0 6px; }
.promo-row input {
  flex: 1;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
}

/* Checkout page */
.demo-banner {
  background: #fdeaf3;
  color: var(--navy);
  border: 1px solid var(--teal);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin: 24px 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  padding-bottom: 90px;
  align-items: start;
}

@media (max-width: 820px) {
  .checkout-layout { grid-template-columns: 1fr; }
}

.checkout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
}

.checkout-card h3 { color: var(--navy); margin-bottom: 4px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.checkout-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 14px;
}

.checkout-card .form-grid label { margin-top: 0; }

.checkout-card input,
.checkout-card select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 54px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
  gap: 26px;
  padding-bottom: 34px;
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.social-icons { display: flex; gap: 10px; margin-top: 14px; }

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease;
}

.social-icons a:hover { background: var(--teal); }
.social-icons svg { width: 16px; height: 16px; fill: currentColor; }

.footer-newsletter-form { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }

.footer-newsletter-form input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.footer-newsletter-form button {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
}

.footer-newsletter-form button:hover { background: var(--teal-dark); }

.footer-newsletter-msg { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; }
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ===== HolidayPirates-style additions ===== */

/* Homepage search bar */
.search-bar-wrap { position: relative; z-index: 2; margin-top: -40px; padding: 0 24px; }

.search-bar {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr auto;
  gap: 14px;
  align-items: end;
}

@media (max-width: 900px) {
  .search-bar { grid-template-columns: 1fr 1fr; }
}

.search-field label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.search-field select,
.search-field input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
}

.search-bar .btn { width: 100%; padding: 12px 20px; white-space: nowrap; }

/* Category pills */
.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.category-pill {
  padding: 9px 20px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.category-pill:hover { border-color: var(--teal); color: var(--teal-dark); }
.category-pill.active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* Deal of the Day */
.deal-of-day {
  background: linear-gradient(135deg, var(--navy), var(--navy-lighter));
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 44px;
  box-shadow: var(--shadow-hover);
}

@media (max-width: 760px) {
  .deal-of-day { grid-template-columns: 1fr; }
}

.deal-of-day-photo {
  background-image: var(--grad);
  background-size: cover;
  background-position: center;
  min-height: 260px;
}

.deal-of-day-content { padding: 34px; color: #fff; display: flex; flex-direction: column; justify-content: center; }

.deal-of-day-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sunset);
  color: #fff;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

.deal-of-day-content h3 { font-size: 1.7rem; margin-bottom: 6px; }
.deal-of-day-content .deal-location { color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.deal-of-day-content .deal-rating { color: rgba(255,255,255,0.85); }
.deal-of-day-content .deal-price { margin: 14px 0 6px; }
.deal-of-day-content .price-old { color: rgba(255,255,255,0.55); }
.deal-of-day-content .price-new { color: #fff; font-size: 2.1rem; }
.deal-of-day-content .price-unit { color: rgba(255,255,255,0.6); }
.deal-of-day-content .btn { margin-top: 14px; width: fit-content; }

/* Countdown */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--sunset-dark);
  background: rgba(255,90,0,0.09);
  padding: 6px 12px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
  margin: 8px 0;
}

.deal-of-day-content .countdown { background: rgba(255,255,255,0.14); color: #fff; }

/* Urgency */
.urgency {
  font-size: 0.8rem;
  color: var(--sunset-dark);
  margin: 4px 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.deal-of-day-content .urgency { color: rgba(255,255,255,0.85); }

/* Newsletter banner */
.newsletter {
  background: linear-gradient(135deg, var(--teal), var(--sunset));
  padding: 60px 24px;
  text-align: center;
  color: #fff;
}

.newsletter h2 { color: #fff; font-size: 1.9rem; margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,0.92); margin-bottom: 26px; }

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
}

.newsletter-form button {
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
}

.newsletter-msg { margin-top: 14px; font-size: 0.88rem; color: #fff; }

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  padding: 54px 24px;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--teal);
  font-weight: 700;
}

.stat-item .stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* deal-row badge support (deals.html list rows) */
.deal-row-photo { position: relative; }

/* ---------- Agent login (fixed corner widget, injected by main.js) ---------- */
.agent-login-widget {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

.agent-login-toggle {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.agent-login-toggle:hover { background: var(--navy-light); }

.agent-login-panel {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 16px;
}

.agent-login-panel.open { display: block; }

.agent-login-panel h4 {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.agent-login-panel input {
  display: block;
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
}

.agent-login-panel button {
  width: 100%;
  padding: 8px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.agent-login-panel button:hover { background: var(--teal-dark); }
