/* ============================================
   TRIPFLORIC — Hotels Page (Self-Contained)
   All styles needed for hotels.html in one file
   ============================================ */

/* ==================================================
   CSS VARIABLES
   ================================================== */
:root {
  --primary: #0C5F58;
  --primary-hover: #094B46;
  --primary-light: #E8F4F3;
  --primary-pale: #E0F2F1;
  --primary-soft: #B2DFDB;
  --primary-muted: #80CBC4;
  --primary-bg: #F5FDFC;
  --search-btn: #0C5F58;
  --search-btn-hover: #094B46;
  --topbar-bg: #0C5F58;
  --secondary: #0F172A;
  --secondary-hover: #1E293B;
  --secondary-light: #E2E8F0;
  --success: #16A34A;
  --success-light: #DCFCE7;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --rating-star: #F59E0B;
  --danger: #DC2626;
  --danger-light: #FEE2E2;
  --discount-ribbon: #DC2626;
  --info: #0EA5E9;
  --info-light: #E0F2FE;
  --bg-primary: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --bg-card: #FFFFFF;
  --text-primary: #111827;
  --text-secondary: #475569;
  --text-tertiary: #64748B;
  --text-light: #FFFFFF;
  --footer-mailchimp-bg: #F1F5F9;
  --footer-heading: #0F172A;
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 15px 40px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 25px 50px rgba(15, 23, 42, 0.12), 0 10px 20px rgba(15, 23, 42, 0.06);
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-toast: 600;
  --container-max: 1400px;
  --container-narrow: 960px;
  --container-wide: 1520px;
  --header-height: 80px;
  --header-height-mobile: 64px;
  --header-height-topbar: 36px;
}

/* ==================================================
   RESET & BASE
   ================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: var(--leading-normal);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-weight: var(--font-extrabold);
}

h2 {
  font-weight: var(--font-bold);
}

h3,
h4 {
  font-weight: var(--font-semibold);
}

[x-cloak] {
  display: none !important;
}

body.sidebar-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* ==================================================
   CONTAINER
   ================================================== */
.hv2-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==================================================
   TOP BAR
   ================================================== */
.hv2-topbar {
  background: var(--primary);
  color: white;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 1100;
}

.hv2-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hv2-topbar-left,
.hv2-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hv2-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color 0.2s;
}

.hv2-topbar-link:hover {
  color: white;
}

.hv2-topbar-currency {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  cursor: pointer;
}

.hv2-topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 13px;
  transition: background 0.2s;
}

.hv2-topbar-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.hv2-topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}

.hv2-topbar-btn:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* ==================================================
   NAVBAR
   ================================================== */
.hv2-navbar {
  position: relative;
  top: auto;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: white;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  border-bottom: 1px solid var(--border-light);
}

.hv2-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
  padding: 10px 0;
}

.hv2-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hv2-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.hv2-navbar.scrolled .hv2-brand,
.hv2-navbar.scrolled .hv2-nav-link {
  color: var(--text-primary);
}

.hv2-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hv2-nav-link {
  padding: 6px 0;
  margin: 0 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hv2-nav-link i {
  color: var(--primary);
  font-size: 14px;
  transition: color 0.2s;
}

.hv2-nav-link:hover {
  color: var(--primary);
}

.hv2-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.25s ease;
}

.hv2-nav-link.active,
.hv2-nav-link.active::after {
  color: var(--primary);
}

.hv2-nav-link.active::after,
.hv2-nav-link:hover::after {
  width: 100%;
}

.hv2-navbar.scrolled .hv2-nav-link.active {
  color: var(--primary);
}

.hv2-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hv2-nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.hv2-nav-mobile-toggle:hover {
  background: var(--bg-secondary);
}

/* ==================================================
   MOBILE MENU
   ================================================== */
.hv2-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 999998 !important;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.hv2-mobile-overlay.active {
  display: block;
  opacity: 1;
}

.hv2-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  z-index: 999999 !important;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 0;
  flex-direction: column;
}

.hv2-mobile-menu.open {
  right: 0;
}

.hv2-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.hv2-mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.hv2-mobile-close:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.hv2-mobile-nav-links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
}

.hv2-mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s;
}

.hv2-mobile-nav-links li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.hv2-mobile-nav-links li a i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--primary);
}

.hv2-mobile-menu-bottom {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
}

.hv2-mobile-login {
  flex: 1;
  padding: 12px;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s;
}

.hv2-mobile-login:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hv2-mobile-signup {
  flex: 1;
  padding: 12px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.hv2-mobile-signup:hover {
  background: var(--primary-hover);
}

/* ==================================================
   HERO
   ================================================== */
.lp-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 1;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.lp-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.lp-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.lp-hero-breadcrumb a:hover {
  color: #fff;
}

.lp-hero-breadcrumb .sep {
  font-size: 11px;
}

.lp-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lp-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  line-height: 1.6;
}

/* ==================================================
   SEARCH BAR
   ================================================== */
.lp-search-bar {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: 0;
}

.lp-search-bar-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.3s;
}

.lp-search-bar-inner:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.lp-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s;
}

.lp-search-field:last-of-type {
  border-right: none;
}

.lp-search-field:hover {
  background: #fafbfc;
}

.lp-search-field .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.lp-search-field:hover .icon {
  transform: scale(1.08);
}

.lp-search-field .field-info {
  flex: 1;
  min-width: 0;
}

.lp-search-field .field-label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.lp-search-field input,
.lp-search-field select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  outline: none;
  cursor: pointer;
}

.lp-search-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.lp-search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--warning), #e09100);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.lp-search-btn:hover {
  background: #e09100;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

/* ==================================================
   HV2 HERO (used by hotels.blade.php)
   ================================================== */
.hv2-hero {
  position: relative;
  min-height: 560px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}

.hv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hv2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hv2-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.35) 40%, rgba(15, 23, 42, 0.75) 100%);
}

.hv2-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.hv2-hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hv2-hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 720px;
  color: white;
  margin-bottom: 16px;
}

.hv2-hero h1 .hv2-text-primary {
  color: var(--warning);
}

.hv2-hero-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 460px;
  margin-bottom: 28px;
}

.hv2-hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.hv2-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
}

.hv2-hero-trust-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.hv2-hero-trust-item strong {
  display: block;
  font-size: 14px;
  color: white;
  margin-bottom: 2px;
}

.hv2-hero-trust-item span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hv2-hero-tag {
  animation: fadeInUp 0.6s ease both;
}

.hv2-hero-trust {
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* ==================================================
   HV2 SEARCH BOX (used by hotels.blade.php)
   ================================================== */
.hv2-search-wrap {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  margin-bottom: 20px;
}

.hv2-search {
  background: white;
  border-radius: 14px;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 12px 32px rgba(15, 23, 42, 0.08);
  padding: 5px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  gap: 2px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.hv2-search:hover {
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.08),
    0 16px 40px rgba(15, 23, 42, 0.10),
    0 36px 72px rgba(15, 23, 42, 0.16);
  border-color: #d0d5dd;
  transform: translateY(-1px);
}

.hv2-search-field {
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  user-select: none;
}

.hv2-search-field--dest {
  cursor: text;
}

.hv2-search-field:hover {
  background: var(--bg-secondary);
}

.hv2-search-field + .hv2-search-field::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--border-light);
}

.hv2-search-field .field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.hv2-search-field .field-label i {
  color: var(--primary);
  font-size: 12px;
  transition: transform 0.2s;
}

.hv2-search-field:hover .field-label i {
  transform: scale(1.1);
}

.hv2-search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  outline: none;
  padding: 4px 0;
  font-family: inherit;
  min-height: 24px;
  cursor: text;
}

.hv2-search-input::placeholder {
  color: var(--text-tertiary);
  font-weight: 400;
}

.hv2-search-input:focus {
  color: var(--text-primary);
}

select.hv2-search-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}

input[type='date'].hv2-search-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

input[type='date'].hv2-search-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.hv2-search-field .field-value i {
  color: var(--primary);
  font-size: 14px;
  transition: transform 0.2s;
}

.hv2-search-field:hover .field-value i {
  transform: scale(1.1);
}

.hv2-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--warning);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
}

.hv2-search-btn:hover {
  background: #e09100;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
  transform: translateY(-1px);
}

.hv2-search-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

/* ==================================================
   SEARCH CLEAR BUTTON
   ================================================== */
.lp-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  z-index: 5;
}
.lp-search-clear:hover { background: #d1d5db; color: #374151; }

/* ==================================================
   DATE PICKER
   ================================================== */
.lp-date-display {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-tertiary);
  cursor: pointer;
}
.lp-date-val { color: var(--text-primary); font-weight: 500; }
.lp-date-sep { color: var(--text-tertiary); }

/* Calendar Tabs */
.lp-cal-tabs {
  display: flex; position: relative; border-bottom: 1px solid var(--border-light); margin-bottom: 8px;
}
.lp-cal-tab {
  flex: 1; padding: 12px 0; text-align: center; font-size: 14px; font-weight: 500;
  color: var(--text-tertiary); background: none; border: none; cursor: pointer; transition: color 0.2s;
}
.lp-cal-tab.active { color: var(--primary); font-weight: 600; }
.lp-cal-tab:hover { color: var(--primary); }
.lp-cal-tab-indicator {
  position: absolute; bottom: -1px; width: 50%; height: 2px; background: var(--primary); transition: left 0.3s ease;
}

/* Calendar Dropdown */
.lp-calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 700px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 1px solid var(--border-light);
  z-index: 100;
  margin-top: 8px;
  padding: 20px 24px 16px;
}
.lp-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 8px;
}
.lp-cal-months {
  display: flex; flex: 1; justify-content: space-around;
}
.lp-cal-arrow {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-light);
  background: white; color: var(--text-primary); font-size: 14px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.15s; flex-shrink: 0;
}
.lp-cal-arrow:hover { background: var(--primary-bg); border-color: var(--primary); color: var(--primary); }
.lp-cal-month { font-size: 16px; font-weight: 700; color: var(--text-primary); text-align: center; min-width: 140px; }
.lp-cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lp-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 8px; }
.lp-cal-weekdays span { font-size: 13px; font-weight: 600; color: var(--text-tertiary); padding: 6px 0; }
.lp-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.lp-cal-day {
  width: 100%; height: 40px; border: none; background: transparent; border-radius: 50%;
  font-size: 14px; font-weight: 500; color: var(--text-primary); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
  line-height: 1;
}
.lp-cal-day:hover:not(.disabled):not(.empty):not(.selected) { background: var(--primary-bg); color: var(--primary); }
.lp-cal-day.selected { background: var(--primary); color: white; font-weight: 700; }
.lp-cal-day.in-range { background: var(--primary-pale); border-radius: 0; color: var(--primary); font-weight: 600; }
.lp-cal-day.disabled { color: #d1d5db; cursor: not-allowed; }
.lp-cal-day.disabled:hover { background: transparent; }
.lp-cal-day.empty { cursor: default; visibility: hidden; }
.lp-cal-footer {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-light);
  text-align: center; font-size: 14px; font-weight: 600; color: var(--text-primary);
}

/* Flexible Date Options */
.lp-flex-body { padding: 20px 0; }
.lp-flex-row { margin-bottom: 24px; }
.lp-flex-label { display: block; font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.lp-flex-options { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-flex-chip {
  padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border-light);
  background: white; font-size: 13px; font-weight: 500; color: var(--text-primary);
  cursor: pointer; transition: all 0.2s;
}
.lp-flex-chip:hover { border-color: var(--primary); color: var(--primary); }
.lp-flex-chip.active { background: var(--primary); color: white; border-color: var(--primary); }
.lp-flex-months { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-flex-month-chip {
  padding: 10px 18px; border-radius: 8px; border: 1px solid var(--border-light);
  background: white; font-size: 13px; font-weight: 500; color: var(--text-primary);
  cursor: pointer; transition: all 0.2s; min-width: 80px; text-align: center;
}
.lp-flex-month-chip:hover { border-color: var(--primary); color: var(--primary); }
.lp-flex-month-chip.active { background: var(--primary); color: white; border-color: var(--primary); }


/* ==================================================
   OCCUPANCY SELECTOR
   ================================================== */
.lp-occ-display {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-primary); cursor: pointer; font-weight: 500;
}
.lp-occ-arrow { font-size: 10px; color: var(--text-tertiary); transition: transform 0.2s; }
.lp-occ-arrow.rotated { transform: rotate(180deg); }

.lp-occ-dropdown {
  position: absolute; top: 100%; right: 0;
  min-width: 320px; background: white; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15); border: 1px solid var(--border-light);
  z-index: 100; margin-top: 8px; padding: 20px;
}
.lp-occ-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.lp-occ-label { display: flex; flex-direction: column; gap: 2px; }
.lp-occ-label strong { font-size: 14px; color: var(--text-primary); font-weight: 600; }
.lp-occ-label span { font-size: 11px; color: var(--text-tertiary); }
.lp-occ-counter { display: flex; align-items: center; gap: 0; border: 1px solid var(--primary); border-radius: 6px; overflow: hidden; }
.lp-occ-btn {
  width: 36px; height: 36px; border: none; border-right: 1px solid var(--primary);
  background: transparent; color: var(--primary); font-size: 14px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.15s; border-radius: 0;
}
.lp-occ-btn:last-child { border-right: none; border-left: 1px solid var(--primary); }
.lp-occ-btn:hover:not(:disabled) { background: var(--primary); color: white; }
.lp-occ-btn:disabled { border-color: #d1d5db; color: #d1d5db; cursor: not-allowed; background: #f5f5f5; }
.lp-occ-btn:disabled:hover { background: #f5f5f5; color: #d1d5db; }
.lp-occ-val { font-size: 16px; font-weight: 600; color: var(--text-primary); min-width: 36px; text-align: center; }
.lp-occ-divider { border-top: 1px solid var(--border-light); margin: 4px 0 12px; }
.lp-occ-pets {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 0 0 16px;
}
.lp-occ-pets-info { display: flex; flex-direction: column; gap: 2px; }
.lp-occ-pets-info strong { font-size: 14px; color: var(--text-primary); font-weight: 600; }
.lp-occ-pets-note { font-size: 12px; color: var(--text-tertiary); }
.lp-occ-pets-link { font-size: 12px; color: var(--primary); text-decoration: underline; margin-top: 2px; }
.lp-occ-pets-link:hover { color: var(--primary-hover); }
.lp-occ-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; margin-top: 4px; }
.lp-occ-toggle input { opacity: 0; width: 0; height: 0; }
.lp-occ-toggle-slider {
  position: absolute; inset: 0; background: #ccc; border-radius: 24px; cursor: pointer; transition: background 0.3s;
}
.lp-occ-toggle-slider::before {
  content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: white;
  bottom: 3px; left: 3px; transition: transform 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.lp-occ-toggle input:checked + .lp-occ-toggle-slider { background: var(--primary); }
.lp-occ-toggle input:checked + .lp-occ-toggle-slider::before { transform: translateX(20px); }
.lp-occ-done {
  width: 100%; padding: 12px; background: var(--primary); color: white; border: none; border-radius: 6px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.lp-occ-done:hover { background: var(--primary-hover); }

/* ==================================================
   DESTINATION AUTOCOMPLETE DROPDOWN
   ================================================== */
.lp-dest-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 380px;
  max-height: 480px;
  overflow-y: auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 1px solid var(--border-light);
  z-index: 100;
  margin-top: 4px;
  padding: 4px 0;
}

.lp-dest-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.lp-dest-clear-recent {
  background: none; border: none; color: var(--primary); font-size: 12px; font-weight: 500;
  cursor: pointer; padding: 0; text-decoration: underline;
}
.lp-dest-clear-recent:hover { color: var(--primary-hover); }

.lp-dest-header {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-dest-header i {
  color: var(--primary);
  font-size: 12px;
}

.lp-dest-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.15s;
}

.lp-dest-item:hover {
  background: #f5f5f5;
}

.lp-dest-item--recent {
  border-bottom: 1px solid #f0f0f0;
}

.lp-dest-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

.lp-dest-icon--recent {
  background: #f0f0f0;
  color: #6b7280;
}

.lp-dest-icon--city {
  background: var(--primary-bg);
  color: var(--primary);
}

.lp-dest-icon--hotel {
  background: #fef3c7;
  color: #d97706;
}

.lp-dest-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lp-dest-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.lp-dest-country {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.lp-dest-loading,
.lp-dest-empty {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

.lp-dest-loading i {
  color: var(--primary);
  margin-right: 6px;
}

/* ==================================================
   TRUST BADGES
   ================================================== */
.lp-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  min-width: 0;
}

.lp-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
  z-index: 2;
  position: relative;
}

.lp-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.lp-trust-item:hover .lp-trust-icon {
  background: var(--primary);
  color: white;
}

.lp-trust-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.lp-trust-text p {
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* ==================================================
   RESULTS HEADER
   ================================================== */
.lp-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.lp-results-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.lp-results-count {
  font-size: 14px;
  color: var(--text-tertiary);
}

.lp-results-count strong {
  color: #0f172a;
  font-weight: 700;
}

.lp-results-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-sort-select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.lp-sort-select:focus {
  border-color: var(--primary);
  outline: none;
}

.lp-view-toggle {
  display: flex;
  gap: 4px;
}

.lp-view-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.lp-view-btn.active,
.lp-view-btn:hover {
  background: var(--primary-soft);
  color: var(--primary-hover);
  border-color: var(--primary-soft);
}

.lp-mobile-filter-btn {
  display: none !important;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  border: 2px solid var(--primary-soft);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.lp-mobile-filter-btn:hover {
  background: var(--primary-hover);
}

/* ==================================================
   FILTER SIDEBAR
   ================================================== */
.lp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.lp-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  z-index: 10;
}

.lp-sidebar::-webkit-scrollbar {
  width: 4px;
}

.lp-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.lp-sidebar::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 4px;
}

.lp-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

.lp-sidebar-overlay {
  display: none;
}

.lp-sidebar-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.lp-sidebar-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-sidebar-header h3 i {
  color: var(--primary);
}

.lp-sidebar-close-btn {
  display: none !important;
}

.lp-sidebar-reset {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
}

.lp-sidebar-reset:hover {
  color: var(--primary-hover);
}

.lp-filter-group {
  margin-bottom: 20px;
}

.lp-filter-group:last-child {
  margin-bottom: 0;
}

.lp-filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* Booking.com-style filter sections */
.lp-filter-section {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.lp-filter-section:last-child {
  border-bottom: none;
}

.lp-filter-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  user-select: none;
  transition: color 0.2s;
}

.lp-filter-section-title:hover {
  color: var(--primary);
}

.lp-filter-section-title i {
  font-size: 11px;
  color: var(--text-tertiary);
  transition: transform 0.25s;
}

.lp-filter-section.collapsed .lp-filter-section-title i {
  transform: rotate(-90deg);
}

.lp-filter-section-body {
  margin-top: 12px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lp-filter-section.collapsed .lp-filter-section-body {
  display: none;
}

.lp-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.lp-check-item:hover {
  color: var(--primary);
}

.lp-check-item input[type='checkbox'],
.lp-check-item input[type='radio'] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.lp-check-item .count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-tertiary);
}

.lp-check-item .stars {
  display: flex;
  gap: 1px;
  color: var(--warning);
  font-size: 12px;
}

.lp-review-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--primary-pale);
  color: var(--primary-hover);
  border: 1px solid var(--primary-soft);
}

.lp-show-more {
  padding-top: 4px;
}

.lp-show-more-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.lp-show-more-btn:hover {
  color: var(--primary-hover);
}

.lp-apply-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  border: 2px solid var(--primary-soft);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.lp-apply-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 95, 88, 0.25);
}

.lp-apply-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 95, 88, 0.3);
}

/* Numeric filter inputs */
.lp-numeric-filter {
  padding: 4px 0;
}

.lp-numeric-inputs {
  margin-left: auto;
}

.lp-numeric-inputs input {
  width: 60px;
  padding: 6px 8px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  color: var(--text-primary);
  background: white;
}

.lp-numeric-inputs input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(12, 95, 88, 0.1);
}

.lp-filter-search {
  position: relative;
}

.lp-filter-search input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
}

.lp-filter-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 95, 88, 0.1);
  outline: none;
}

.lp-filter-search input::placeholder {
  color: var(--text-tertiary);
}

.lp-filter-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  font-size: 13px;
}

.lp-filter-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.lp-filter-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 95, 88, 0.1);
  outline: none;
}

.lp-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
}

.lp-check-item:hover {
  color: var(--primary);
}

.lp-check-item input[type="checkbox"],
.lp-check-item input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.lp-check-item .count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-tertiary);
}

.lp-check-item .stars {
  display: flex;
  gap: 1px;
  color: var(--warning);
  font-size: 12px;
}

.lp-price-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lp-price-display span {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* Dual Range Slider */
.lp-range-slider {
  position: relative;
  width: 100%;
  height: 36px;
}

.lp-range-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  transform: translateY(-50%);
}

.lp-range-fill {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-muted));
}

.lp-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
  margin: 0;
}

.lp-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-soft);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(12, 95, 88, 0.25);
  border: 3px solid #fff;
  transition: transform 0.15s, box-shadow 0.15s;
}

.lp-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 12px rgba(12, 95, 88, 0.35);
}

.lp-range-input::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

.lp-range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-soft);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(12, 95, 88, 0.25);
  border: 3px solid #fff;
}

.lp-range-input::-moz-range-track {
  background: transparent;
  border: none;
}

.lp-range-min {
  z-index: 2;
}

.lp-range-max {
  z-index: 3;
}

/* Legacy price inputs (still used in search box) */
.lp-price-inputs {
  display: flex;
  gap: 8px;
  width: 100%;
}

.lp-price-inputs input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: white;
  text-align: center;
}

.lp-price-inputs input:focus {
  border-color: var(--primary);
  outline: none;
}

.lp-view-map-btn {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.lp-view-map-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 95, 88, 0.3);
}

/* ==================================================
   HOTEL CARDS — Grid View (Default)
   ================================================== */
.lp-hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* --- List View Override --- */
.lp-hotel-grid.lp-hotel-grid-list {
  grid-template-columns: 1fr;
}

/* --- Card Container --- */
.lp-hotel-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.03);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-width: 0;
}

.lp-hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
  border-color: var(--primary-light);
}

/* --- Image Area --- */
.lp-hotel-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-secondary);
}

.lp-hotel-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
  z-index: 1;
  pointer-events: none;
}

.lp-hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.lp-hotel-card:hover .lp-hotel-card-img img {
  transform: scale(1.06);
}

/* --- Badges --- */
.lp-hotel-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lp-hotel-card-badge.best-seller {
  background: var(--warning);
  color: #422006;
}

.lp-hotel-card-badge.popular {
  background: var(--primary);
  color: white;
}

.lp-hotel-card-badge.new {
  background: var(--success);
  color: white;
}

.lp-hotel-card-badge.free-cancellation {
  background: #10b981;
  color: white;
}

/* --- Wishlist Button --- */
.lp-hotel-card-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.lp-hotel-card-wishlist:hover,
.lp-hotel-card-wishlist.active {
  background: white;
  color: var(--danger);
}

/* --- Photo Counter --- */
.lp-hotel-card-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* --- Card Body --- */
.lp-hotel-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-hotel-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 8px;
}

.lp-hotel-card-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  transition: color 0.2s;
  min-width: 0;
  overflow-wrap: break-word;
}

.lp-hotel-card-name a {
  color: var(--primary-hover);
  text-decoration: none;
}

.lp-hotel-card:hover .lp-hotel-card-name {
  color: var(--primary);
}

.lp-hotel-card-stars {
  display: flex;
  gap: 2px;
  color: var(--warning);
  font-size: 12px;
  flex-shrink: 0;
  padding-top: 2px;
}

.lp-hotel-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.lp-hotel-card-location i {
  color: var(--primary);
  font-size: 11px;
}

.lp-hotel-card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-hotel-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.lp-hotel-card-rating .score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 3px 8px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.lp-hotel-card-rating .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.lp-hotel-card-rating .reviews {
  font-size: 11px;
  color: var(--text-tertiary);
}

.lp-hotel-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.lp-hotel-card-amenity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--primary-hover);
  background: var(--primary-pale);
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
  border: 1px solid var(--primary-soft);
}

.lp-hotel-card-amenity:hover {
  background: var(--primary-soft);
  color: var(--primary-hover);
}

.lp-hotel-card-amenity i {
  color: var(--primary);
  font-size: 11px;
}

/* Amenities +more badge */
.lp-hotel-card-amenity-more {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-hover);
  background: var(--primary-bg);
  border: 1px solid var(--primary-pale);
  border-radius: 6px;
  white-space: nowrap;
}

/* --- Card Bottom --- */
.lp-hotel-card-bottom {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-hotel-card-tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lp-hotel-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.lp-hotel-card-tag i {
  font-size: 10px;
}

.lp-hotel-card-tag.pay-at-hotel i {
  color: #10b981;
}

.lp-hotel-card-tag.free-cancel i {
  color: var(--primary);
}

.lp-hotel-card-price-area {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-left: auto;
}

.lp-hotel-card-price {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.lp-hotel-card-price .currency {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.lp-hotel-card-price .amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-hover);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-hotel-card-price .per {
  font-size: 11px;
  color: var(--text-tertiary);
}

.lp-hotel-card-taxes {
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.3;
  white-space: nowrap;
}

.lp-hotel-card-price .old {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-right: 2px;
}

.lp-hotel-card-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-hover);
  background: var(--primary-soft);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid var(--primary-muted);
}

.lp-hotel-card-checkin {
  color: var(--text-tertiary);
  font-size: 12px;
}

.lp-hotel-card-rating .score.new {
  background: var(--primary-bg);
  color: var(--primary);
  border: 1px solid var(--primary-pale);
  min-width: 0;
}

.lp-hotel-card-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--primary-soft);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.lp-hotel-card-book-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 95, 88, 0.25);
}

/* --- List View Card Overrides --- */
.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card {
  flex-direction: row;
  height: 240px;
  overflow: hidden;
}

.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-img {
  width: 340px;
  min-width: 340px;
  height: 100%;
  max-height: 240px;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}

.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-img::after {
  border-radius: 16px 0 0 16px;
}

.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-body {
  padding: 16px 20px;
  justify-content: space-between;
  overflow: hidden;
  min-width: 0;
  flex: 1;
  height: 100%;
}

/* ==================================================
   PAGINATION
   ================================================== */
.lp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.lp-pagi-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--border-light);
  background: #fff;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}

.lp-pagi-btn:hover {
  border-color: var(--primary-soft);
  color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 95, 88, 0.15);
}

.lp-pagi-btn.active {
  background: var(--primary-soft);
  color: var(--primary-hover);
  border-color: var(--primary-soft);
  box-shadow: 0 4px 12px rgba(12, 95, 88, 0.2);
}

.lp-pagi-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lp-pagi-dots {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 14px;
}

/* ==================================================
   SECTION HELPERS
   ================================================== */
.hv2-section {
  padding: 64px 0;
}

.hv2-section--compact {
  padding: 40px 0;
}

/* ==================================================
   NEWSLETTER
   ================================================== */
.hv2-newsletter-section {
  padding: 20px 0 40px;
  position: relative;
  overflow: visible;
}

.nl-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #0a3d38 50%, var(--primary-hover) 100%);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  min-height: 280px;
  margin: 0 auto;
}

.nl-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 400px 300px at 20% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 70%), radial-gradient(ellipse 350px 350px at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.nl-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.nl-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.nl-shape-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  animation: nlFloat1 8s ease-in-out infinite;
}

.nl-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 10%;
  animation: nlFloat2 10s ease-in-out infinite;
}

.nl-shape-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 40%;
  background: rgba(245, 158, 11, 0.05);
  animation: nlFloat3 7s ease-in-out infinite;
}

.nl-shape-4 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  right: 25%;
  background: rgba(255, 255, 255, 0.05);
  animation: nlFloat1 9s ease-in-out infinite reverse;
}

.nl-shape-5 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: -30px;
  background: rgba(245, 158, 11, 0.04);
  animation: nlFloat2 11s ease-in-out infinite reverse;
}

@keyframes nlFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 15px) scale(1.05);
  }
}

@keyframes nlFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(15px, -20px) scale(1.08);
  }
}

@keyframes nlFloat3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-10px, 10px) rotate(180deg);
  }
}

.nl-float-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.nl-float-icon {
  position: absolute;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.08);
}

.nl-float-icon-1 {
  top: 15%;
  left: 8%;
  animation: nlIconFloat 6s ease-in-out infinite;
  font-size: 22px;
  transform: rotate(-15deg);
}

.nl-float-icon-2 {
  top: 70%;
  left: 20%;
  animation: nlIconFloat 8s ease-in-out infinite 1s;
  font-size: 20px;
}

.nl-float-icon-3 {
  top: 20%;
  right: 15%;
  animation: nlIconFloat 7s ease-in-out infinite 2s;
  font-size: 16px;
  transform: rotate(20deg);
}

.nl-float-icon-4 {
  bottom: 20%;
  right: 10%;
  animation: nlIconFloat 9s ease-in-out infinite 0.5s;
  font-size: 30px;
}

.nl-float-icon-5 {
  bottom: 40%;
  left: 50%;
  animation: nlIconFloat 7.5s ease-in-out infinite 1.5s;
  font-size: 18px;
  transform: rotate(-10deg);
}

@keyframes nlIconFloat {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.08;
  }

  50% {
    transform: translateY(-12px);
    opacity: 0.15;
  }
}

.nl-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.nl-content {
  max-width: 620px;
}

.nl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--warning);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.nl-badge i {
  font-size: 10px;
}

.nl-title {
  font-size: 38px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.nl-title-highlight {
  color: var(--warning);
  font-weight: 800;
}

.nl-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 500px;
}

.nl-subtitle strong {
  color: #ffffff;
  font-weight: 700;
}

.nl-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nl-trust-avatars {
  display: flex;
  align-items: center;
}

.nl-trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  margin-left: -10px;
  transition: transform 0.3s, border-color 0.3s;
}

.nl-trust-avatars img:first-child {
  margin-left: 0;
}

.nl-trust-avatars img:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--warning);
  z-index: 2;
}

.nl-trust-avatars-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  margin-left: -10px;
}

.nl-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nl-trust-stars {
  display: flex;
  gap: 2px;
  color: var(--warning);
  font-size: 12px;
}

.nl-trust-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.nl-trust-text span strong {
  color: white;
  font-weight: 700;
}

.nl-form-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nl-form-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nl-form-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.nl-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.nl-form-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warning);
  font-size: 15px;
  flex-shrink: 0;
}

.nl-form-label {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 1px;
}

.nl-form-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.nl-form {
  margin-bottom: 14px;
}

.nl-form-fields {
  display: flex;
  gap: 8px;
}

.nl-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.nl-input-group:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.nl-input-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  flex-shrink: 0;
  transition: color 0.3s;
}

.nl-input-group:focus-within .nl-input-icon {
  color: white;
}

.nl-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  width: 100%;
}

.nl-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.nl-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warning);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  flex-shrink: 0;
}

.nl-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  background: #e09100;
}

.nl-submit-btn:active {
  transform: translateY(0) scale(0.98);
}

.nl-submit-btn i {
  font-size: 13px;
  transition: transform 0.3s;
}

.nl-submit-btn:hover i {
  transform: translateX(4px);
}

.nl-perks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nl-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.nl-perk i {
  color: white;
  font-size: 10px;
}

/* ==================================================
   FOOTER
   ================================================== */
.hv2-footer {
  background: linear-gradient(180deg, var(--primary) 0%, #0a3d38 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.hv2-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.hv2-footer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.hv2-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hv2-footer .hv2-brand {
  color: white;
  margin-bottom: 20px;
  font-size: 24px;
}

.hv2-footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
}

.hv2-footer-social {
  display: flex;
  gap: 10px;
}

.hv2-footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hv2-footer-social a:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hv2-footer-col h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.hv2-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--warning);
  border-radius: 2px;
}

.hv2-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hv2-footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hv2-footer-col a:hover {
  color: white;
  transform: translateX(4px);
}

.hv2-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hv2-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s;
}

.hv2-footer-contact li:hover {
  color: white;
}

.hv2-footer-contact i {
  color: var(--warning);
  margin-top: 4px;
  font-size: 16px;
}

.hv2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hv2-footer-bottom .payments {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hv2-footer-bottom .payments i {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s, transform 0.3s;
}

.hv2-footer-bottom .payments i:hover {
  color: white;
  transform: scale(1.1);
}

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1200px) {
  .hv2-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .hv2-footer-desc { font-size: 14px; }
}

@media (max-width: 900px) {
  .hv2-topbar { display: none; }
  .hv2-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
  .hv2-footer { padding: 60px 0 24px; }
  .hv2-footer-desc { font-size: 13px; }
  .hv2-footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .hv2-container { padding: 0 24px; }
}

@media (max-width: 540px) {
  .hv2-footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; text-align: center; }
  .hv2-footer { padding: 50px 0 0; }
  .hv2-footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .hv2-footer-bottom { padding: 20px 0; gap: 12px; }
  .hv2-footer-bottom .payments { gap: 12px; justify-content: center; }
  .hv2-footer-bottom .payments i { font-size: 24px; }
  .hv2-container { padding: 0 16px; }
}


@media (min-width: 1400px) {
  .lp-hero {
    min-height: 420px;
  }

  .lp-hero h1 {
    font-size: 48px;
  }

  .lp-hero-sub {
    font-size: 18px;
    max-width: 560px;
  }

  .lp-layout {
    grid-template-columns: 300px 1fr;
    gap: 36px;
  }

  .lp-sidebar-card {
    padding: 28px;
  }

  .lp-trust {
    gap: 20px;
  }

  .lp-trust-item {
    padding: 18px 22px;
  }

  .lp-results-header h2 {
    font-size: 32px;
  }

  .lp-search-bar-inner {
    border-radius: 18px;
  }

  .lp-search-field {
    padding: 20px 24px;
  }

  .lp-search-btn {
    padding: 20px 40px;
    font-size: 16px;
  }

  .lp-hotel-card-name {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .lp-hotel-grid {
    gap: 16px;
  }

  .lp-hero h1 {
    font-size: 34px;
  }
}

/* NEW: keep hotel cards in 2 comfortable columns down to tablet width,
   instead of squeezing 2 columns all the way down to phone width */
@media (max-width: 860px) {
  .lp-hotel-grid:not(.lp-hotel-grid-list) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .lp-hero {
    min-height: 300px;
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .lp-hero h1 {
    font-size: 30px;
  }

  .lp-hero-sub {
    font-size: 15px;
    max-width: 400px;
  }

  .lp-search-bar {
    margin-top: -32px;
  }

  .lp-search-field {
    padding: 14px 16px;
    gap: 10px;
  }

  .lp-search-field .icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .lp-search-field select,
  .lp-search-field input {
    font-size: 13px;
  }

  .lp-search-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .lp-layout {
    grid-template-columns: 1fr;
  }

  .lp-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    z-index: 2000;
    background: white;
    overflow-y: auto;
    transition: left 0.3s;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    padding: 0;
  }

  .lp-sidebar.mobile-open {
    left: 0;
  }

  .lp-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
  }

  .lp-sidebar-overlay.mobile-open {
    display: block;
  }

  .lp-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .lp-trust-item {
    padding: 14px 16px;
  }

  .lp-results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lp-results-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .lp-mobile-filter-btn {
    display: inline-flex !important;
  }

  .lp-sidebar-close-btn {
    display: flex !important;
  }

  .lp-sidebar-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    margin: 0;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 900px) {
  .lp-hero {
    min-height: 260px;
    padding-top: 60px;
    padding-bottom: 32px;
  }

  .lp-hero h1 {
    font-size: 26px;
  }

  .lp-hero-sub {
    font-size: 14px;
    max-width: 340px;
  }

  .lp-hero-breadcrumb {
    font-size: 12px;
  }

  .lp-search-bar {
    margin-top: -28px;
  }

  .lp-search-field {
    padding: 12px 14px;
  }

  .lp-search-field .field-label {
    font-size: 10px;
  }

  .lp-search-field .icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
    border-radius: 8px;
  }

  .lp-search-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .lp-results-header h2 {
    font-size: 24px;
  }

  .lp-results-actions {
    flex-wrap: wrap;
  }

  .lp-sidebar-card {
    padding: 16px;
  }

  .lp-filter-group {
    margin-bottom: 16px;
  }

  .lp-pagination {
    margin-top: 28px;
  }

  .lp-pagi-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .hv2-topbar-left {
    display: none;
  }

  .hv2-topbar-right {
    gap: 12px;
    font-size: 12px;
  }

  .hv2-navbar {
    top: auto;
    position: relative;
  }

  .hv2-container {
    padding: 0 24px;
  }

  .hv2-section {
    padding: 50px 0;
  }

  .hv2-nav-links {
    display: none;
  }

  .hv2-nav-mobile-toggle {
    display: inline-flex;
  }

  .hv2-navbar {
    padding: 14px 0;
  }

  .hv2-brand {
    font-size: 19px;
  }

  .nl-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .nl-content {
    max-width: 100%;
  }

  .nl-title {
    font-size: 28px;
  }

  .nl-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .nl-trust {
    justify-content: center;
  }

  .nl-form-fields {
    flex-direction: column;
  }

  .nl-submit-btn {
    justify-content: center;
    width: 100%;
  }

  .nl-perks {
    justify-content: center;
  }

  .nl-float-icons {
    display: none;
  }

  .nl-wrapper {
    padding: 32px 28px;
    min-height: auto;
  }

  .hv2-footer {
    padding: 60px 0 24px;
  }

  .hv2-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .hv2-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .lp-hero {
    min-height: 220px;
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .lp-hero h1 {
    font-size: 22px;
  }

  .lp-hero-sub {
    font-size: 13px;
    max-width: 280px;
  }

  .lp-hero-breadcrumb {
    display: none;
  }

  .lp-search-bar {
    margin-top: -24px;
  }

  .lp-search-bar-inner {
    flex-direction: column;
    border-radius: 12px;
  }

  .lp-search-field {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 14px;
  }

  .lp-search-field:last-of-type {
    border-bottom: none;
  }

  .lp-search-field .icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .lp-search-btn {
    justify-content: center;
    border-radius: 0 0 12px 12px;
    padding: 14px;
    font-size: 14px;
  }

  .lp-hotel-grid:not(.lp-hotel-grid-list) {
    grid-template-columns: 1fr !important;
  }

  .lp-hotel-card-img {
    height: 200px;
    min-height: 200px;
  }

  .lp-hotel-card-name {
    font-size: 14px;
  }

  .lp-results-header {
    margin-bottom: 16px;
  }

  .lp-sort-select {
    font-size: 12px;
    padding: 6px 28px 6px 10px;
  }

  .lp-view-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .lp-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .lp-trust-item {
    padding: 12px 14px;
    gap: 10px;
  }

  .lp-trust-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .lp-trust-text h4 {
    font-size: 12px;
  }

  .lp-trust-text p {
    font-size: 11px;
  }

  .lp-pagination {
    gap: 4px;
    margin-top: 24px;
  }

  .lp-pagi-btn {
    width: 34px;
    height: 34px;
    font-size: 12px;
    border-radius: 8px;
  }

  .lp-results-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .lp-sort-select {
    width: 100%;
  }

  .lp-view-toggle {
    justify-content: center;
  }

  /* List view also collapses to a stacked card on small screens */
  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card {
    flex-direction: column;
    height: auto;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-img {
    width: 100%;
    min-width: 0;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    border-radius: 16px 16px 0 0;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-img::after {
    border-radius: 16px 16px 0 0;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-body {
    flex-direction: column;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-main {
    padding-right: 0;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-side {
    width: 100%;
    min-width: 0;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    align-items: stretch;
  }
}

@media (max-width: 540px) {
  .hv2-container {
    padding: 0 16px;
  }

  .lp-hero {
    min-height: 180px;
    padding-top: 52px;
    padding-bottom: 20px;
  }

  .lp-hero h1 {
    font-size: 20px;
  }

  .lp-hero-sub {
    font-size: 12px;
    max-width: 240px;
  }

  .lp-search-bar {
    margin-top: -20px;
  }

  .lp-search-field {
    padding: 8px 12px;
    gap: 8px;
  }

  .lp-search-field .field-label {
    font-size: 9px;
  }

  .lp-search-field select,
  .lp-search-field input {
    font-size: 12px !important;
  }

  .lp-search-btn {
    font-size: 13px;
    padding: 12px;
    gap: 6px;
  }

  .lp-hotel-card-img {
    height: 190px;
    min-height: 190px;
  }

  .lp-hotel-card-body {
    padding: 14px 14px 16px;
  }

  .lp-hotel-card-name {
    font-size: 14px;
  }

  .lp-results-header h2 {
    font-size: 20px;
  }

  .lp-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .lp-trust-item {
    padding: 10px 12px;
    gap: 8px;
  }

  .lp-trust-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .lp-trust-text h4 {
    font-size: 11px;
  }

  .lp-trust-text p {
    font-size: 10px;
  }

  .nl-wrapper {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .nl-title {
    font-size: 22px;
  }

  .nl-form-card {
    padding: 18px;
  }

  .hv2-footer-desc {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .lp-hero {
    min-height: 160px;
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .lp-hero h1 {
    font-size: 18px;
  }

  .lp-hero-sub {
    font-size: 11px;
    max-width: 200px;
  }

  .lp-search-field {
    padding: 6px 10px;
  }

  .lp-search-field .icon {
    width: 24px;
    height: 24px;
    font-size: 10px;
    border-radius: 6px;
  }

  .lp-search-btn {
    font-size: 12px;
    padding: 10px;
  }

  .lp-hotel-card-img {
    height: 170px;
    min-height: 170px;
  }

  .lp-pagi-btn {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .lp-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lp-trust-item {
    padding: 10px 12px;
  }
}

/* ==================================================
   ANIMATIONS & TRANSITIONS
   ================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}

.lp-hotel-card, .lp-tour-card {
  animation: fadeInUp 0.4s ease both;
}

.lp-hotel-card:nth-child(1), .lp-tour-card:nth-child(1) { animation-delay: 0.0s; }
.lp-hotel-card:nth-child(2), .lp-tour-card:nth-child(2) { animation-delay: 0.05s; }
.lp-hotel-card:nth-child(3), .lp-tour-card:nth-child(3) { animation-delay: 0.1s; }
.lp-hotel-card:nth-child(4), .lp-tour-card:nth-child(4) { animation-delay: 0.15s; }
.lp-hotel-card:nth-child(5), .lp-tour-card:nth-child(5) { animation-delay: 0.2s; }
.lp-hotel-card:nth-child(6), .lp-tour-card:nth-child(6) { animation-delay: 0.25s; }

.lp-filter-section {
  animation: fadeIn 0.3s ease both;
}

/* ==================================================
   SKELETON LOADING
   ================================================== */
.lp-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
}

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

/* ==================================================
   SCROLL TO TOP
   ================================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ==================================================
   RESULTS HEADER IMPROVEMENTS
   ================================================== */
.lp-results-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.lp-results-count {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ==================================================
   MOBILE SEARCH BOX IMPROVEMENTS
   ================================================== */
@media (max-width: 768px) {
  .hv2-search {
    grid-template-columns: 1fr;
    padding: 4px;
  }

  .hv2-search-field {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-light);
  }

  .hv2-search-field:last-of-type {
    border-bottom: none;
  }

  .hv2-search-btn {
    border-radius: 10px;
    margin: 4px;
  }

  .lp-calendar-dropdown {
    min-width: 100%;
    left: 0;
    transform: none;
  }

  .lp-occ-dropdown {
    min-width: 100%;
  }
}

/* ==================================================
   BOOKING.COM-STYLE LIST ROW LAYOUT
   ================================================== */

/* --- Results header sort --- */
.lp-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-sort-wrap label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.lp-sort-wrap label i {
  color: var(--primary);
  margin-right: 2px;
}

.lp-sort-select {
  padding: 9px 34px 9px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2364748b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.lp-sort-select:hover {
  border-color: var(--primary);
}

/* --- Card body split: main + side --- */
.lp-hotel-card-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.lp-hotel-card-main .lp-hotel-card-desc {
  margin-bottom: 10px;
}

.lp-hotel-card-side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

/* --- Highlight chips (green/blue info chips) --- */
.lp-hotel-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.lp-highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.lp-highlight-chip i {
  font-size: 10px;
}

.lp-highlight-chip.green {
  background: var(--primary-soft);
  color: var(--primary-hover);
}

.lp-highlight-chip.blue {
  background: var(--primary-pale);
  color: var(--primary-hover);
}

/* --- "Show on map" link --- */
.lp-hotel-card-map-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  margin-left: 6px;
}

.lp-hotel-card-map-link:hover {
  text-decoration: underline;
}

/* --- Review score block (right side) --- */
.lp-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-score-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1px;
}

.lp-score-text .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.lp-score-text .reviews {
  font-size: 11px;
  color: var(--text-tertiary);
}

.lp-hotel-card-side .score {
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 12px 4px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.lp-hotel-card-side .score.new {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 12px;
}

/* --- Price block (right side) --- */
.lp-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

/* --- Perks under the CTA --- */
.lp-side-perks {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #0b7a3e;
}

.lp-side-perks i {
  font-size: 10px;
  margin-right: 3px;
}

/* ==================================================
   LIST VIEW — Booking.com-style rows
   ================================================== */

/* Body: horizontal flex */
.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-body {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* Main content: fills remaining space */
.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-main {
  flex: 1;
  min-width: 0;
  padding-right: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-main .lp-hotel-card-desc {
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 4px;
}

.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-main .lp-hotel-card-amenities {
  flex-wrap: wrap;
  gap: 4px 6px;
  max-height: 56px;
  overflow: hidden;
  position: relative;
}

.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-main .lp-hotel-card-amenities::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, transparent, white);
  pointer-events: none;
}

/* Hide grid-only elements in list view */
.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-room-info,
.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-perks {
  display: none;
}

/* Side panel: fixed width, right-aligned */
.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-side {
  width: 220px;
  min-width: 220px;
  border-left: 1px solid var(--border-light);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
}

/* Score badge in side panel */
.lp-hotel-grid.lp-hotel-grid-list .lp-score-side {
  display: flex;
}

/* Price in side panel */
.lp-hotel-grid.lp-hotel-grid-list .lp-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

/* CTA button fills side width */
.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-book-btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
}

/* --- Grid view fallback: side stacks under main as a row --- */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-side {
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: 4px;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-book-btn {
  width: auto;
}

/* ==================================================
   GRID VIEW — Booking.com-style tall cards
   ================================================== */

/* Show grid score row under the title, hide the side score */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-side {
  display: none;
}

.lp-hotel-grid.lp-hotel-grid-list .lp-score-grid {
  display: none;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 6px;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .score {
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 10px 3px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  font-size: 14px;
  font-weight: 800;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .score.new {
  background: var(--primary-bg);
  color: var(--primary);
  border: 1px solid var(--primary-pale);
  font-size: 12px;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .lp-score-text {
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  text-align: left;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .reviews {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Grid card body spacing */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-body {
  gap: 8px;
}

/* Booking.com-style primary-colored property name */
.lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-name a,
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-name a {
  color: var(--primary-hover);
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-name {
  font-size: 17px;
  line-height: 1.35;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-name a {
  color: var(--primary-hover);
}

/* ==================================================
   GRID VIEW — Booking.com-style cards
   ================================================== */

/* Hide side panel in grid view */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-side {
  display: none;
}

/* Show grid score under title */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 8px;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .score {
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 10px 3px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  font-size: 14px;
  font-weight: 800;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .score.new {
  background: var(--primary-bg);
  color: var(--primary);
  border: 1px solid var(--primary-pale);
  font-size: 12px;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .lp-score-text {
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  text-align: left;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-score-grid .reviews {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Grid card body */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-body {
  padding: 12px 14px 14px;
  gap: 4px;
}

/* Booking.com-style name: teal colored */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-name {
  font-size: 15px;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-name a {
  color: var(--primary-hover);
}

/* Featured badge */
.lp-hotel-card-featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: var(--primary-pale);
  color: var(--primary-hover);
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid var(--primary-soft);
}

/* Stars row */
.lp-hotel-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

/* Grid card location */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-location {
  font-size: 12px;
  margin-bottom: 4px;
}

/* Room info (Booking.com-style) */
.lp-hotel-card-room-info {
  margin: 4px 0 6px;
  padding: 6px 0;
  border-top: 1px solid var(--border-light);
}

.lp-room-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.lp-room-details {
  font-size: 11px;
  color: var(--text-tertiary);
  display: flex;
  gap: 8px;
}

/* Green perks (Booking.com-style) */
.lp-hotel-card-perks {
  margin: 4px 0 6px;
}

.lp-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.lp-perk-item.green {
  color: #0b7a3e;
}

.lp-perk-item.green i {
  color: #0b7a3e;
  font-size: 11px;
  margin-top: 2px;
}

/* Price row (Booking.com-style) */
.lp-hotel-card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.lp-price-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.lp-price-nights {
  font-size: 11px;
  color: var(--text-tertiary);
}

.lp-price-final {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.lp-price-final .currency {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.lp-price-final .amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-price-final .old {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.lp-price-taxes {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* Booking.com-style CTA button */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-book-btn {
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
}

/* Hide list-only elements in grid view */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-desc,
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-amenities,
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-highlights {
  display: none;
}

/* Grid view: show room info */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-room-info {
  margin: 4px 0 6px;
  padding: 6px 0;
  border-top: 1px solid var(--border-light);
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-room-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-room-details {
  font-size: 11px;
  color: var(--text-tertiary);
  display: flex;
  gap: 8px;
}

/* Grid view: show perks */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-perks {
  margin: 4px 0 6px;
}

/* Grid view: show price row at bottom */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

/* --- Booking.com grid: 3 compact columns on desktop --- */
@media (min-width: 1100px) {
  .lp-hotel-grid:not(.lp-hotel-grid-list) {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card {
  border-radius: 12px;
}

/* Taller, Booking-style image crop */
.lp-hotel-grid:not(.lp-hotel-grid-list) .lp-hotel-card-img {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
}

/* --- Mobile: stack side under main --- */
@media (max-width: 768px) {
  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card {
    flex-direction: column;
    height: auto;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-img {
    width: 100%;
    min-width: 0;
    height: 200px;
    max-height: 200px;
    border-radius: 16px 16px 0 0;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-img::after {
    border-radius: 16px 16px 0 0;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-body {
    flex-direction: column;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-main {
    padding-right: 0;
  }

  .lp-hotel-grid.lp-hotel-grid-list .lp-hotel-card-side {
    width: 100%;
    min-width: 0;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    align-items: stretch;
  }

  .lp-sort-wrap label span {
    display: none;
  }
}