/* ========================================================================= */
/* AIRBNB STRICT DESIGN SYSTEM                                               */
/* This file entirely bypasses Bootstrap for all main structural elements.   */
/* ========================================================================= */

:root {
  /* v4 premium tokens */
  --v6-primary: #1d4ed8;        /* Deep luxury blue */
  --v6-primary-dark: #1e3a8a;
  --v6-primary-light: #dbeafe;
  --v6-text: #0f172a;           /* Deep elegant dark slate */
  --v6-text-muted: #475569;     /* Readable gray */
  --v6-border: #e2e8f0;         /* Soft borders */
  --v6-bg: #ffffff;
  --v6-bg-alt: #f8fafc;
  
  --abnb-red: var(--v6-primary); /* Legacy overrides */
  --abnb-red-dark: var(--v6-primary-dark);
  --abnb-black: var(--v6-text);
  --abnb-gray-dark: var(--v6-text-muted);

  --abnb-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
  
  /* Soft, modern border radii */
  --v6-radius-sm: 12px;
  --v6-radius-md: 16px;
  --v6-radius-lg: 24px;
  --v6-radius-xl: 32px;
  --v6-radius-pill: 9999px;

  /* Ambient + Directional Shadows */
  --v6-shadow-1: 0 4px 12px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --v6-shadow-2: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.03);
  --v6-shadow-3: 0 24px 64px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.04);
  
  --abnb-focus: 0 0 0 4px rgba(29, 78, 216, 0.15);
}

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

body {
  font-family: var(--abnb-font) !important;
  color: var(--abnb-black) !important;
  background-color: var(--abnb-bg) !important;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* better text rendering + rhythm */
html { scroll-behavior: smooth; }
body { line-height: 1.6; }
img { max-width: 100%; height: auto; }

/* consistent focus */
*:focus-visible {
  outline: none;
  box-shadow: var(--abnb-focus);
  border-radius: 10px;
}

/* ========================================================================= */
/* PRELOADER                                                                 */
/* ========================================================================= */

#spinner {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

#spinner.abnb-preloader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.abnb-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.abnb-loader__ring {
  animation: abnb-loader-spin 1s linear infinite;
}

@keyframes abnb-loader-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.abnb-loader__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.abnb-loader__brand {
  font-family: var(--abnb-font);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  animation: abnb-loader-pulse 1.6s ease-in-out infinite;
}

.abnb-loader__sub {
  font-family: var(--abnb-font);
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
}

@keyframes abnb-loader-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .abnb-loader__ring { animation: none; }
  .abnb-loader__brand { animation: none; }
}

a {
  color: inherit;
  text-decoration: none !important;
}

/* ========================================================================= */
/* UTILITIES & CONTAINERS                                                    */
/* ========================================================================= */

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

@media (min-width: 768px) {
  .abnb-container {
    padding: 0 40px;
  }
}

@media (min-width: 1128px) {
  .abnb-container {
    padding: 0 80px;
  }
}

.abnb-btn-primary {
  background: var(--abnb-red);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.abnb-btn-primary:hover {
  background: var(--abnb-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.abnb-btn-primary:active {
  transform: scale(0.97);
}

.abnb-btn-secondary {
  background: var(--abnb-black);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.abnb-btn-secondary:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-2px);
}

.abnb-btn-outline {
  background: transparent;
  color: var(--abnb-black);
  border: 2px solid var(--abnb-gray-light);
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.abnb-btn-outline:hover {
  border-color: var(--abnb-red);
  color: var(--abnb-red);
  background: var(--abnb-red-light);
}

/* ========================================================================= */
/* HEADER & NAVIGATION                                                       */
/* ========================================================================= */

.abnb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--abnb-bg);
  border-bottom: 1px solid var(--abnb-gray-light);
  height: 80px;
  display: flex;
  align-items: center;
}

.abnb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.abnb-logo img {
  height: 70px;
  width: auto;
}

/* Search Pill (Desktop) */
.abnb-search-bar {
  display: none;
  align-items: center;
  border: 1px solid var(--abnb-gray-light);
  border-radius: var(--abnb-radius-pill);
  box-shadow: var(--abnb-shadow-sm);
  padding: 8px 8px 8px 24px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.abnb-search-bar:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.abnb-search-bar__text {
  font-size: 14px;
  font-weight: 600;
  padding-right: 16px;
  border-right: 1px solid var(--abnb-gray-light);
}

.abnb-search-bar__sub {
  font-size: 14px;
  color: var(--abnb-gray-dark);
  padding: 0 16px;
}

.abnb-search-bar__icon {
  background: var(--abnb-red);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.abnb-user-menu {
  display: none;
  align-items: center;
  gap: 16px;
}

/* Desktop nav only (mobile uses bottom tabbar + phone CTA). */
.abnb-user-menu.luxe-menu-panel {
  display: none;
}

@media (min-width: 992px) {
  .abnb-user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Slightly reduced gap because pill has padding */
  }
}

.abnb-user-menu__link {
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--abnb-radius-pill);
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--abnb-gray-dark);
}

.abnb-user-menu__link:hover {
  background: #f7f7f7;
  color: var(--abnb-black);
}

.abnb-user-menu__link.active {
  color: var(--abnb-black);
  background: #f4f5f7;
}

/* Mobile Header CTA (Pulsing Button) */
.abnb-mobile-cta {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .abnb-mobile-cta {
    display: none;
    /* Hide on desktop */
  }
}

.premium-btn-pulse {
  background: var(--abnb-red);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 99px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  animation: premiumPulse 2s infinite;
}

.premium-btn-pulse:hover {
  color: #ffffff;
}

@keyframes premiumPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* Mobile Search Bar (Top) */
.abnb-mobile-search {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
  border: 1px solid var(--abnb-gray-light);
  border-radius: var(--abnb-radius-pill);
  padding: 12px 20px;
  box-shadow: var(--abnb-shadow-sm);
}

.abnb-mobile-search i {
  font-size: 18px;
  color: var(--abnb-black);
  margin-right: 12px;
}

.abnb-mobile-search__inner {
  display: flex;
  flex-direction: column;
}

.abnb-mobile-search__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.abnb-mobile-search__sub {
  font-size: 12px;
  color: var(--abnb-gray-dark);
  line-height: 1.2;
}

@media (min-width: 768px) {

  .abnb-search-bar,
  .abnb-user-menu {
    display: flex;
  }

  .abnb-mobile-search {
    display: none;
  }
}

/* ========================================================================= */
/* PREMIUM BOTTOM TAB BAR (MOBILE ONLY)                                      */
/* ========================================================================= */

.premium-mobile-tab-bar {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  width: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.03);
  border-radius: 20px;
}

.premium-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #717171;
  font-size: 11px;
  font-weight: 600;
  gap: 4px;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  width: 25%;
}

.premium-tab-item__icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-tab-item svg {
  width: 24px;
  height: 24px;
  color: #717171;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-tab-item.active {
  color: var(--abnb-red);
}

.premium-tab-item.active svg {
  color: var(--abnb-red);
  stroke-width: 2.5;
}

.premium-tab-item.active .premium-tab-item__icon {
  transform: translateY(-2px);
}

/* Optional active dot below */
.premium-tab-item.active::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--abnb-red);
  border-radius: 0 0 4px 4px;
}

@media (min-width: 768px) {
  .premium-mobile-tab-bar {
    display: none;
  }
}

/* Ensure body doesn't get hidden under mobile tab bar */
body {
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* ========================================================================= */
/* MAIN PAGE & SECTIONS                                                      */
/* ========================================================================= */

.abnb-section {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .abnb-section {
    padding: 64px 0;
  }
}

.abnb-bg-light {
  background: var(--abnb-bg-secondary);
}

.abnb-section-header {
  margin-bottom: 32px;
}

.abnb-section-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--abnb-black);
}

@media (min-width: 768px) {
  .abnb-section-title {
    font-size: 34px;
  }
}

.abnb-text-accent {
  color: var(--abnb-red);
}

.abnb-section-footer {
  text-align: center;
  margin-top: 40px;
}

/* ========================================================================= */
/* PREMIUM WELCOME SECTION                                                   */
/* ========================================================================= */

.premium-welcome {
  padding: 60px 0;
}

@media (min-width: 992px) {
  .premium-welcome {
    padding: 100px 0;
  }
}

.premium-welcome__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .premium-welcome__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.premium-welcome__image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/5;
}

@media (min-width: 768px) {
  .premium-welcome__image-wrapper {
    aspect-ratio: 4/3;
  }
}

.premium-welcome__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-welcome__image-wrapper:hover .premium-welcome__image {
  transform: scale(1.05);
}

.premium-welcome__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.premium-welcome__badge i {
  color: #ffb500;
}

.premium-welcome__tag {
  color: var(--abnb-red);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.premium-welcome__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--abnb-black);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .premium-welcome__title {
    font-size: 40px;
  }
}

.premium-text-accent {
  color: var(--abnb-red);
}

.premium-welcome__text {
  font-size: 16px;
  color: #717171;
  line-height: 1.6;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .premium-welcome__text {
    font-size: 18px;
  }
}

.premium-welcome__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.premium-welcome__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.premium-welcome__benefits i {
  color: #34C759;
  font-size: 20px;
}

.premium-welcome__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.premium-btn-primary {
  background: var(--abnb-red);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.premium-btn-primary:hover {
  background: var(--abnb-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  color: #ffffff;
}

.premium-btn-outline {
  background: transparent;
  color: var(--abnb-black);
  border: 2px solid var(--abnb-gray-light);
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.premium-btn-outline:hover {
  border-color: var(--abnb-red);
  color: var(--abnb-red);
  background: var(--abnb-red-light);
}

/* ========================================================================= */
/* PREMIUM MODERN CARDS (CSS GRID)                                           */
/* ========================================================================= */

.abnb-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  column-gap: 30px;
  row-gap: 40px;
}

.premium-modern-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--abnb-radius-xl);
  overflow: hidden;
  box-shadow: var(--abnb-shadow-sm);
  border: 1px solid var(--abnb-gray-light);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  text-decoration: none !important;
  color: var(--abnb-black);
  height: 100%;
}

.premium-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--abnb-shadow-md);
  color: var(--abnb-black);
  text-decoration: none;
}

.premium-modern-card__media {
  position: relative;
}

.premium-modern-card__image-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #eef2ff;
}

.premium-modern-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-modern-card:hover .premium-modern-card__img {
  transform: scale(1.08);
}

.premium-modern-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--abnb-red);
  color: #ffffff;
  padding: 7px 12px;
  border-radius: var(--abnb-radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  z-index: 10;
}

.premium-modern-card__body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.premium-modern-card__header {
  margin-bottom: 10px;
}

.premium-modern-card__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  line-height: 1.35;
  color: var(--abnb-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: inherit;
}

.premium-modern-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--abnb-gray-dark);
  font-size: 13px;
  font-weight: 600;
}

.premium-modern-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.premium-modern-card__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--abnb-gray-dark);
}

.premium-modern-card__meta-rating svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.premium-modern-card__dot {
  color: #cbd5e1;
  font-weight: 900;
}

.premium-modern-card__desc {
  font-size: 14px;
  color: var(--abnb-gray-dark);
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.premium-modern-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.premium-modern-card__fact {
  padding: 6px 10px;
  border-radius: var(--abnb-radius-pill);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  color: var(--abnb-black);
}

.premium-modern-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.premium-modern-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.premium-modern-card__price-from {
  font-size: 13px;
  color: var(--abnb-gray-dark);
  font-weight: 600;
}

.premium-modern-card__price-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--abnb-black);
  line-height: 1;
}

.premium-modern-card__price-period {
  font-size: 13px;
  color: var(--abnb-gray-dark);
  font-weight: 500;
}

.premium-modern-card__action {
  background: #0f172a;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

/* v4: no flashy CTA animations */
.premium-modern-card__action::after,
.premium-modern-card__action::before {
  display: none !important;
}

.premium-modern-card:hover .premium-modern-card__action {
  background: #111c33;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.28);
}

/* (animations removed) */

@media (prefers-reduced-motion: reduce) {
  .premium-modern-card__action {
    animation: none !important;
  }
  .premium-modern-card__action::after {
    animation: none !important;
    display: none !important;
  }
}

/* ========================================================================= */
/* PREMIUM FLOATING BOOKING WIDGET (Form)                                    */
/* ========================================================================= */

.premium-booking-widget {
  background: #ffffff;
  border-radius: var(--abnb-radius-xl);
  box-shadow: var(--abnb-shadow-lg);
  padding: 32px;
  max-width: 1000px;
  margin: -60px auto 60px auto;
  position: relative;
  z-index: 10;
  border: 1px solid var(--abnb-gray-light);
}

.premium-booking-widget__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .premium-booking-widget__row {
    flex-direction: row;
    align-items: flex-end;
  }
}

.premium-booking-widget__group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.premium-booking-widget__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-left: 12px;
}

.premium-booking-widget__input {
  width: 100%;
  background: #f4f5f7;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  color: #1a1a1a;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-booking-widget__input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--abnb-red);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.premium-booking-widget__input::placeholder {
  color: #a0a0a0;
  font-weight: 500;
}

.premium-booking-widget__btn {
  background: var(--abnb-red);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.premium-booking-widget__btn:hover {
  background: var(--abnb-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.premium-booking-widget__btn:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .premium-booking-widget__btn {
    width: auto;
  }
}

/* ========================================================================= */
/* PREMIUM TOURS GRID                                                        */
/* ========================================================================= */

.premium-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.premium-tour-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 3 / 4;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  background: #1a1a1a;
  text-decoration: none !important;
}

.premium-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.premium-tour-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.premium-tour-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
  opacity: 0.85;
}

.premium-tour-card:hover .premium-tour-card__img {
  transform: scale(1.08);
  opacity: 1;
}

.premium-tour-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 24px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.premium-tour-card__subtitle {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.premium-tour-card__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  line-height: 1.2;
}

.premium-tour-card__action {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-tour-card:hover .premium-tour-card__action {
  opacity: 1;
  transform: translateY(0);
  background: var(--abnb-red);
  color: #fff;
}

/* ========================================================================= */
/* CALL SECTION                                                              */
/* ========================================================================= */

.abnb-call-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: var(--abnb-radius-xl);
  padding: 48px 32px;
  text-align: center;
  box-shadow: none;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid #bfdbfe;
}

.abnb-call-icon {
  width: 64px;
  height: 64px;
  background: var(--abnb-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.abnb-call-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--abnb-black);
}

.abnb-call-text {
  color: var(--abnb-gray-dark);
  font-size: 14px;
}

/* ========================================================================= */
/* CAROUSEL CARDS OVERRIDE                                                   */
/* ========================================================================= */

.abnb-carousel-card {
  background: #fff;
  border-radius: var(--abnb-radius-lg);
  padding: 24px;
  border: 1px solid var(--abnb-gray-light);
  height: 100%;
  box-shadow: var(--abnb-shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

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

.abnb-carousel-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.abnb-carousel-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--abnb-red);
  display: block;
  margin-bottom: 12px;
}

.abnb-carousel-card p {
  color: var(--abnb-gray-dark);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ========================================================================= */
/* DETAIL PAGE                                                               */
/* ========================================================================= */

.abnb-detail-header {
  margin: 32px 0 24px 0;
}

.abnb-detail-title {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--abnb-black);
}

.abnb-detail-meta {
  font-size: 15px;
  font-weight: 500;
  color: var(--abnb-black);
  display: flex;
  align-items: center;
  gap: 16px;
}

.abnb-meta-item i {
  color: var(--abnb-black);
}

/* 5-Image Mosaic Grid */
.abnb-mosaic-gallery {
  display: flex;
  height: 250px;
  gap: 8px;
  margin-bottom: 40px;
  border-radius: var(--abnb-radius-xl);
  overflow: hidden;
}

@media (min-width: 768px) {
  .abnb-mosaic-gallery {
    height: 480px;
  }
}

.abnb-mosaic-main {
  flex: 1;
  position: relative;
}

.abnb-mosaic-main a {
  display: block;
  width: 100%;
  height: 100%;
}

.abnb-mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abnb-mosaic-side {
  display: none;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

@media (min-width: 768px) {
  .abnb-mosaic-side {
    display: grid;
  }
}

.abnb-mosaic-side a {
  display: block;
  width: 100%;
  height: 100%;
}

.abnb-mosaic-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.round-tr {
  border-top-right-radius: var(--abnb-radius-lg);
}

.round-br {
  border-bottom-right-radius: var(--abnb-radius-lg);
}

.round-all {
  border-radius: var(--abnb-radius-lg);
}

/* ------------------------------------- */
/* Mobile Swipeable Gallery Magic        */
/* ------------------------------------- */
@media (max-width: 767px) {
  .abnb-mosaic-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
    gap: 12px;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }

  .abnb-mosaic-gallery::-webkit-scrollbar {
    display: none;
  }

  /* Flatten the DOM structure visually so <a> tags become flex items */
  .abnb-mosaic-main,
  .abnb-mosaic-side,
  .abnb-mosaic-gallery>div[style="display:none;"] {
    display: contents !important;
  }

  /* Make each image anchor a swipeable card */
  .abnb-mosaic-gallery a {
    display: block !important;
    flex: 0 0 85% !important;
    height: 100%;
    scroll-snap-align: center;
    border-radius: var(--abnb-radius-lg) !important;
    overflow: hidden;
  }

  .abnb-mosaic-gallery a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0 !important;
  }
}

/* Layout Grid (Content + Sticky Sidebar) */
.abnb-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--abnb-gray-light);
}

@media (min-width: 992px) {
  .abnb-detail-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

.abnb-detail-content {
  flex: 1;
  min-width: 0;
}

.abnb-detail-sidebar {
  width: 100%;
}

@media (min-width: 992px) {
  .abnb-detail-sidebar {
    width: 33.33%;
    position: sticky;
    top: 100px;
  }
}

/* Mobile Booking Banner */
.abnb-mobile-booking {
  display: block;
}

@media (min-width: 992px) {
  .abnb-mobile-booking {
    display: none;
  }
}

/* Detail Section Typography */
.abnb-section-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--abnb-black);
}

.abnb-detail-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--abnb-black);
}

.abnb-detail-description p {
  margin-bottom: 16px;
}

.abnb-detail-quotes {
  padding-left: 16px;
  border-left: 4px solid var(--abnb-gray-light);
  font-style: italic;
  color: var(--abnb-gray-dark);
}

/* Sticky Booking Card */
.abnb-booking-card {
  background: #fff;
  border: 1px solid var(--abnb-gray-light);
  border-radius: var(--abnb-radius-lg);
  padding: 24px;
  box-shadow: var(--abnb-shadow-lg);
}

.abnb-booking-card__header {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.abnb-booking-card__price strong {
  font-size: 22px;
  font-weight: 600;
}

.abnb-booking-card__period {
  font-size: 16px;
  color: var(--abnb-gray-dark);
  margin-left: 4px;
}

.abnb-booking-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--abnb-gray-dark);
}

.abnb-booking-card__hint {
  font-size: 14px;
  color: var(--abnb-gray-dark);
}

/* Form Styles */
.abnb-form__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .abnb-form__row {
    flex-direction: row;
  }

  .abnb-form__group {
    flex: 1;
  }
}

.abnb-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--abnb-gray-dark);
  border-radius: var(--abnb-radius-md);
  font-size: 16px;
  color: var(--abnb-black);
  outline: none;
  transition: border-color 0.2s;
}

.abnb-input:focus {
  border-color: var(--abnb-black);
  border-width: 2px;
  padding: 13px 15px;
  /* offset border thicknes */
}

/* Table overrides */
.abnb-price-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.abnb-price-table-wrapper th,
.abnb-price-table-wrapper td {
  padding: 16px 0;
  border-bottom: 1px solid var(--abnb-gray-light);
  text-align: left;
}

.abnb-popular-widget {
  margin-top: 32px;
}

.abnb-widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.abnb-popular-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.abnb-popular-item img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--abnb-radius-md);
}

.abnb-popular-item__info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.abnb-popular-item__info span {
  font-size: 14px;
  color: var(--abnb-gray-dark);
}

/* ========================================================================= */
/* FOOTER & BOTTOM STYLES                                                    */
/* ========================================================================= */

.abnb-footer {
  background: var(--abnb-bg-secondary);
  border-top: 1px solid var(--abnb-gray-light);
  padding: 48px 0 32px;
  margin-top: 48px;
}

.abnb-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  border-bottom: 1px solid var(--abnb-gray-light);
  padding-bottom: 48px;
}

.abnb-footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--abnb-black);
  margin-bottom: 16px;
}

.abnb-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abnb-footer-column ul li {
  margin-bottom: 12px;
}

.abnb-footer-column ul li a {
  font-size: 14px;
  color: var(--abnb-gray-dark);
  transition: color 0.2s;
}

.abnb-footer-column ul li a:hover {
  text-decoration: underline !important;
  color: var(--abnb-black);
}

.abnb-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}

@media (min-width: 768px) {
  .abnb-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.abnb-footer-copy {
  font-size: 14px;
  color: var(--abnb-gray-dark);
}

.abnb-footer-socials {
  display: flex;
  gap: 16px;
}

.abnb-footer-socials a {
  color: var(--abnb-black);
  font-size: 18px;
  transition: transform 0.2s;
}

.abnb-footer-socials a:hover {
  transform: scale(1.1);
}

/* Old Call Block Override - Hide it because we have a Tab Bar now */
/* But keeping original logic for specific calls if needed, just styled cleanly */
.abnb-mobile-callblock {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.abnb-callblock-btn {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.abnb-callblock-btn.call {
  background: var(--abnb-black);
}

.abnb-callblock-btn.wa {
  background: #25D366;
}

/* Hide the call block completely here because we built the abnb-tab-bar in header.
   This avoids overlap. */
.abnb-mobile-callblock {
  display: none !important;
}

/* Modals global override for abnb style */
.abnb-modal {
  border-radius: var(--abnb-radius-lg);
  border: none;
  overflow: hidden;
}

.abnb-modal__header {
  border-bottom: 1px solid var(--abnb-gray-light);
  padding: 24px;
}

.abnb-modal__body {
  padding: 0;
  /* Important for maps to be full width */
}

.abnb-modal__body iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ========================================================================= */
/* PREMIUM MODERN DETAIL PAGE STYLES                                         */
/* ========================================================================= */

.premium-modern-detail-header {
  margin: 32px 0 28px 0;
}

.premium-modern-detail-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin: 0 0 10px 0;
  color: var(--abnb-black);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.premium-modern-detail-meta {
  font-size: 15px;
  color: var(--abnb-gray-dark);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.premium-modern-meta-rating {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.premium-modern-meta-reviews a {
  color: #717171;
  text-decoration: underline;
  font-weight: 500;
}

.premium-modern-meta-location {
  color: var(--abnb-gray-dark);
  font-weight: 500;
}

/* Premium Booking Sticky Card */
.premium-booking-card {
  background: #ffffff;
  border-radius: var(--abnb-radius-xl);
  padding: 28px;
  box-shadow: var(--abnb-shadow-lg);
  border: 1px solid var(--abnb-gray-light);
}

.premium-booking-card__price-row {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.premium-booking-card__price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--abnb-black);
}

.premium-booking-card__price-label {
  font-size: 16px;
  color: var(--abnb-gray-dark);
  font-weight: 600;
}

.premium-booking-card__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.premium-booking-card__reviews {
  color: #717171;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}

.premium-booking-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--abnb-gray-dark);
  margin-bottom: 24px;
}

.premium-btn-primary {
  background: var(--abnb-red);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.premium-btn-primary:hover {
  background: var(--abnb-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.premium-btn-primary:active {
  transform: scale(0.97);
}

.premium-btn-secondary {
  background: var(--abnb-bg-secondary);
  color: var(--abnb-black);
  border: 1px solid var(--abnb-gray-light);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.premium-btn-secondary:hover {
  background: var(--abnb-gray-light);
  color: var(--abnb-black);
}

.premium-booking-card__hint {
  font-size: 14px;
  color: var(--abnb-gray-dark);
  text-align: center;
  margin-top: 16px;
}

/* Detail Page Form Upgrades */
.premium-modern-form {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--abnb-radius-xl);
  box-shadow: var(--abnb-shadow-sm);
  border: 1px solid var(--abnb-gray-light);
}

.premium-modern-input {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--abnb-gray-light);
  border-radius: 14px;
  font-size: 16px;
  color: var(--abnb-black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.premium-modern-input:focus {
  border-color: var(--abnb-red);
  box-shadow: var(--abnb-focus);
  background: #ffffff;
}

/* Quote Block Upgrade */
.premium-modern-quotes {
  padding-left: 24px;
  border-left: 4px solid var(--abnb-red);
  margin: 32px 0;
  background: linear-gradient(to right, #eff6ff, transparent);
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 0 12px 12px 0;
}

.premium-modern-quotes p {
  font-size: 18px;
  font-style: italic;
  color: var(--abnb-gray-dark);
  line-height: 1.6;
}

/* Typography Headings */
.premium-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--abnb-black);
  margin-bottom: 20px;
}



/* ========================================================================= */
/* NEW CLIENT REDESIGN – HEADER, HERO, STATS, PAGES                         */
/* ========================================================================= */

.luxe-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--abnb-bg);
  transition: box-shadow 0.3s;
}

.luxe-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.luxe-header-top {
  background: var(--abnb-bg-secondary);
  border-bottom: 1px solid var(--abnb-gray-light);
}

.luxe-header-top__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.luxe-header-top__inner p {
  margin: 0;
  color: var(--abnb-gray-dark);
}

.luxe-header-top__inner a {
  color: var(--abnb-red);
  font-weight: 700;
}

.luxe-header-main {
  background: var(--abnb-bg);
  border-bottom: 1px solid var(--abnb-gray-light);
}

.abnb-header__inner {
  min-height: 76px;
  gap: 16px;
}

.abnb-logo img {
  height: 56px;
}

.abnb-user-menu__link {
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: var(--abnb-radius-pill);
  color: var(--abnb-gray-dark);
  transition: background 0.2s, color 0.2s;
}

.abnb-user-menu__link:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--abnb-black);
}

.abnb-user-menu__link.active {
  color: var(--abnb-black);
  background: rgba(15, 23, 42, 0.08);
}

.luxe-menu-panel {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile phone CTA in header */
.luxe-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--abnb-radius-pill);
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.06);
  color: var(--abnb-black);
  font-weight: 900;
  text-decoration: none !important;
}

.luxe-header-phone__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--abnb-gray-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--abnb-shadow-sm);
  flex: 0 0 auto;
}

.luxe-header-phone__icon svg {
  width: 18px;
  height: 18px;
  color: var(--abnb-red);
}

.luxe-header-phone__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 13px;
}

.luxe-header-phone__text small {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--abnb-gray-dark);
  margin-top: 3px;
}

@media (max-width: 991px) {
  .luxe-header-top {
    display: none;
  }

  /* hide desktop nav on mobile */
  .abnb-user-menu.luxe-menu-panel { display: none !important; }
}

@media (min-width: 992px) {
  .luxe-menu-panel {
    position: static !important;
    display: flex !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    flex-direction: row !important;
    gap: 8px !important;
  }

  /* on desktop show nav, hide phone CTA */
  .abnb-user-menu.luxe-menu-panel { display: flex; }
  .luxe-header-phone { display: none; }
}

/* Hero Sections */
.luxe-hero {
  padding: 44px 0 28px;
}

.luxe-hero__content {
  background: var(--abnb-bg);
  border-radius: 28px;
  border: 1px solid var(--abnb-gray-light);
  box-shadow: var(--abnb-shadow-sm);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.luxe-hero__content::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(600px 240px at 20% 10%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(520px 240px at 90% 20%, rgba(37, 99, 235, 0.10), transparent 55%);
  pointer-events: none;
}

.luxe-hero__content > * {
  position: relative;
  z-index: 1;
}

.luxe-page-hero {
  padding: 48px 0 16px;
}

.luxe-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--abnb-radius-pill);
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.06);
  color: var(--abnb-red-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.luxe-hero h1,
.luxe-page-hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--abnb-black);
}

.luxe-hero h1 span {
  color: var(--abnb-red);
}

.luxe-hero p {
  max-width: 720px;
  color: var(--abnb-gray-dark);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 0;
}

.luxe-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Stats Grid */
.abnb-section.pt-0 {
  padding-top: 10px;
}

/* Stats Grid */
.luxe-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.luxe-stat-card {
  background: #fff;
  border: 1px solid var(--abnb-gray-light);
  border-radius: 18px;
  box-shadow: var(--abnb-shadow-sm);
  padding: 18px 20px;
  text-align: left;
}

.luxe-stat-card strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--abnb-black);
  line-height: 1;
  margin-bottom: 8px;
}

.luxe-stat-card span {
  color: var(--abnb-gray-dark);
  font-size: 14px;
  font-weight: 700;
}

/* Subtitle */
.luxe-subtitle {
  color: var(--abnb-gray-dark);
  max-width: 640px;
  margin: 8px auto 0;
  font-size: 16px;
}

/* Card Location */
.premium-modern-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--abnb-gray-dark);
  font-size: 13px;
  margin-bottom: 8px;
}

.premium-modern-card__location svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Detail Subtitle */
.premium-modern-detail-subtitle {
  color: var(--abnb-gray-dark);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* Thank-you Page */
.luxe-thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}

.luxe-thankyou-card {
  max-width: 520px;
  width: 100%;
  padding: 40px;
  text-align: center;
}

.luxe-thankyou-card h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.luxe-thankyou-card p {
  font-size: 17px;
  color: var(--abnb-gray-dark);
  line-height: 1.6;
  margin-bottom: 32px;
}

.luxe-thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(52, 199, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.luxe-thankyou-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 17px;
}

/* Service Cards (about page) */
.luxe-service-card {
  padding: 28px;
}

.luxe-service-card__title {
  font-weight: 700;
  color: var(--abnb-black);
}

.luxe-service-card__text {
  color: var(--abnb-gray-dark);
  line-height: 1.6;
}

.luxe-center-tag {
  display: inline-block;
}

.luxe-form-title {
  font-size: 24px;
  margin-bottom: 32px;
}

/* Страница o-nas: отступ только у блока формы (не у всей секции) */
.luxe-o-nas-form {
  margin-top: 65px !important;
}

.luxe-center-btn {
  justify-content: center;
}

/* Popular Items (sidebar) */
.premium-popular-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: var(--abnb-radius-md);
  transition: background 0.2s;
  text-decoration: none !important;
}

.premium-popular-item:hover {
  background: var(--abnb-bg-secondary);
}

.premium-popular-item__image {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--abnb-radius-sm);
}

.premium-popular-item__info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--abnb-black);
  margin: 0 0 4px 0;
}

.premium-popular-item__info span {
  font-size: 14px;
  font-weight: 600;
  color: var(--abnb-red);
}

/* Mobile CTA positioning */
.abnb-mobile-callblock.luxe-mobile-cta {
  bottom: 78px;
}

/* Footer dark theme */
.abnb-footer.luxe-footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
}

.abnb-footer-brand__logo img {
  height: 46px;
  width: auto;
  display: block;
}

.abnb-footer-brand__text {
  margin: 14px 0 16px;
  color: #94a3b8;
  line-height: 1.6;
  font-size: 14px;
  max-width: 360px;
}

.abnb-footer-brand__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.abnb-footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--abnb-radius-pill);
  background: rgba(148, 163, 184, 0.10);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none !important;
}

.abnb-footer-pill--wa {
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.22);
}

.abnb-footer-pill:hover {
  background: rgba(148, 163, 184, 0.16);
}

.abnb-footer.luxe-footer .abnb-footer-column h4 {
  color: #f1f5f9;
}

.abnb-footer.luxe-footer .abnb-footer-column ul li a {
  color: #94a3b8;
}

.abnb-footer.luxe-footer .abnb-footer-column ul li a:hover {
  color: #e2e8f0;
}

.abnb-footer.luxe-footer .abnb-footer-grid {
  border-bottom-color: #1e293b;
}

.luxe-footer-bottom {
  border-top: 1px solid #1e293b;
}

.abnb-footer.luxe-footer .abnb-footer-copy {
  color: #94a3b8;
}

.abnb-footer.luxe-footer .abnb-footer-copy a {
  color: #dbeafe;
}

.abnb-footer.luxe-footer .abnb-footer-socials a {
  color: #94a3b8;
}

.abnb-footer.luxe-footer .abnb-footer-socials a:hover {
  color: #e2e8f0;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .luxe-hero__content {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .luxe-stats-grid {
    grid-template-columns: 1fr;
  }

  .luxe-hero h1 {
    font-size: 32px;
  }
}

/* ========================================================================= */
/* V4 PREMIUM OVERRIDES (single place)                                       */
/* Goal: calm, expensive, precise. No cheap glows/animations.                */
/* ========================================================================= */

:root {
  --v4-bg: #ffffff;
  --v4-surface: #ffffff;
  --v4-surface-2: #f8fafc;
  --v4-text: #0b1220;
  --v4-muted: #556274;
  --v4-border: rgba(15, 23, 42, 0.10);
  --v4-primary: #2563eb;
  --v4-primary-2: #1d4ed8;

  --v4-radius-sm: 12px;
  --v4-radius-md: 16px;
  --v4-radius-lg: 22px;
  --v4-radius-xl: 28px;

  --v4-shadow-1: 0 1px 2px rgba(15, 23, 42, 0.06), 0 10px 30px rgba(15, 23, 42, 0.06);
  --v4-shadow-2: 0 18px 55px rgba(15, 23, 42, 0.14);
}

body {
  background: var(--v4-bg) !important;
  color: var(--v4-text) !important;
}

.abnb-container { max-width: 1280px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--v4-text); letter-spacing: -0.03em; }
.abnb-section-title { font-weight: 900; letter-spacing: -0.03em; }

/* Buttons */
.premium-btn-primary,
.abnb-btn-primary {
  background: var(--v4-primary) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}
.premium-btn-primary:hover,
.abnb-btn-primary:hover {
  background: var(--v4-primary-2) !important;
  transform: translateY(-1px);
}
.premium-btn-outline,
.abnb-btn-outline {
  border-radius: 14px !important;
  border-color: var(--v4-border) !important;
}
.premium-btn-outline:hover,
.abnb-btn-outline:hover {
  background: rgba(37, 99, 235, 0.06) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
  color: var(--v4-primary) !important;
}

/* Header */
.luxe-header { background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); }
.luxe-header.is-scrolled { box-shadow: var(--v4-shadow-1); }
.luxe-header-main { border-bottom-color: var(--v4-border); }
.abnb-logo img { height: 54px; }
.abnb-user-menu__link { font-weight: 800; color: var(--v4-muted); }
.abnb-user-menu__link:hover { background: rgba(15,23,42,0.06); color: var(--v4-text); }
.abnb-user-menu__link.active { background: rgba(15,23,42,0.08); color: var(--v4-text); }
.luxe-header-phone { border-color: rgba(37, 99, 235, 0.20); background: rgba(37, 99, 235, 0.06); }

/* Hero (home) */
.luxe-hero { padding: 56px 0 26px; }
.luxe-hero__content {
  background: var(--v4-surface);
  border: 1px solid var(--v4-border);
  border-radius: var(--v4-radius-xl);
  box-shadow: var(--v4-shadow-1);
  padding: 56px;
}
.luxe-eyebrow {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--v4-primary-2);
  font-weight: 900;
}
.luxe-hero h1 { font-weight: 950; font-size: clamp(34px, 4.3vw, 54px); line-height: 1.06; }
.luxe-hero p { color: var(--v4-muted); font-size: 18px; }

/* Stats */
.luxe-stat-card {
  border: 1px solid var(--v4-border);
  border-radius: var(--v4-radius-md);
  box-shadow: none;
  background: var(--v4-surface);
}
.luxe-stat-card strong { color: var(--v4-text); font-weight: 950; }
.luxe-stat-card span { color: var(--v4-muted); }

/* Cards */
.abnb-catalog-grid { row-gap: 28px; column-gap: 22px; }
.premium-modern-card {
  border-radius: var(--v4-radius-lg);
  border: 1px solid var(--v4-border);
  box-shadow: none;
  background: var(--v4-surface);
}
.premium-modern-card:hover { transform: translateY(-4px); box-shadow: var(--v4-shadow-1); }
.premium-modern-card__image-box { border-bottom: 1px solid rgba(15,23,42,0.08); }
.premium-modern-card__title { font-weight: 900; }
.premium-modern-card__desc { color: var(--v4-muted); }
.premium-modern-card__fact { border-color: rgba(15,23,42,0.10); }
.premium-modern-card__action {
  background: #0b1220;
  border-radius: 14px;
  box-shadow: none;
}

/* Footer */
.abnb-footer.luxe-footer {
  background: #0b1220;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.abnb-footer.luxe-footer .abnb-footer-column h4 { color: rgba(255,255,255,0.92); }
.abnb-footer.luxe-footer .abnb-footer-column ul li a { color: rgba(255,255,255,0.62); }
.abnb-footer.luxe-footer .abnb-footer-column ul li a:hover { color: rgba(255,255,255,0.92); }
.abnb-footer-brand__text { color: rgba(255,255,255,0.60); }
.abnb-footer-pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.10); }
.abnb-footer-pill:hover { background: rgba(255,255,255,0.12); }

/* Mobile */
@media (max-width: 640px) {
  .luxe-hero__content { padding: 28px 18px; }
  .luxe-hero h1 { font-size: 34px; }
}

/* ========================================================================= */
/* V5 PROFESSIONAL REDESIGN (single active layer)                            */
/* ========================================================================= */

:root {
  --v5-bg: #ffffff;
  --v5-surface: #ffffff;
  --v5-surface-muted: #f8fafc;
  --v5-text: #0f172a;
  --v5-text-muted: #475569;
  --v5-border: rgba(15, 23, 42, 0.08); /* Softer */
  --v5-primary: #1d4ed8;
  --v5-primary-hover: #1e3a8a;
  --v5-radius-1: 16px;
  --v5-radius-2: 24px;
  --v5-radius-3: 32px;
  --v5-radius-4: 40px;
  --v5-shadow-1: 0 4px 16px rgba(15, 23, 42, 0.04), 0 2px 4px rgba(15, 23, 42, 0.02);
  --v5-shadow-2: 0 16px 48px rgba(15, 23, 42, 0.08), 0 6px 12px rgba(15, 23, 42, 0.03);
}

html, body {
  background: var(--v5-bg) !important;
  color: var(--v5-text) !important;
}

.abnb-container { max-width: 1320px; }

.abnb-section { padding: 54px 0; }
@media (min-width: 992px) { .abnb-section { padding: 74px 0; } }

.abnb-section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  margin: 0;
}

/* Buttons */
.premium-btn-primary, .abnb-btn-primary, .premium-booking-widget__btn, .button-contact {
  background: var(--v5-primary) !important;
  border-color: var(--v5-primary) !important;
  color: #fff !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

.premium-btn-primary:hover, .abnb-btn-primary:hover, .premium-booking-widget__btn:hover, .button-contact:hover {
  background: var(--v5-primary-hover) !important;
  border-color: var(--v5-primary-hover) !important;
  transform: translateY(-1px);
}

.premium-btn-outline, .abnb-btn-outline, .premium-btn-secondary {
  background: #fff !important;
  color: var(--v5-text) !important;
  border: 1px solid var(--v5-border) !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
}

/* Header */
.luxe-header {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.luxe-header-main { border-bottom: 1px solid var(--v5-border); }
.luxe-header.is-scrolled { box-shadow: var(--v5-shadow-1); }
.abnb-logo img { height: 56px; }
.abnb-header__inner { min-height: 78px; }

.abnb-user-menu__link {
  color: var(--v5-text-muted);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
}

.abnb-user-menu__link:hover { color: var(--v5-text); background: rgba(15, 23, 42, 0.06); }
.abnb-user-menu__link.active { color: var(--v5-text); background: rgba(15, 23, 42, 0.08); }

/* Hero */
.luxe-hero { padding: 50px 0 18px; }
.luxe-hero__content {
  background: var(--v5-surface);
  border: 1px solid var(--v5-border);
  box-shadow: var(--v5-shadow-1);
  border-radius: var(--v5-radius-4);
  padding: clamp(24px, 4vw, 58px);
}

.luxe-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.06);
  color: var(--v5-primary-hover);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: none;
}

.luxe-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 950;
  margin: 0 0 14px;
}

.luxe-hero p {
  max-width: 760px;
  color: var(--v5-text-muted);
  font-size: 18px;
}

.luxe-stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.luxe-stat-card { border: 1px solid var(--v5-border); border-radius: var(--v5-radius-2); box-shadow: none; }
.luxe-stat-card strong { color: var(--v5-text); font-weight: 900; }
.luxe-stat-card span { color: var(--v5-text-muted); font-weight: 700; }

/* Cards */
.abnb-catalog-grid { row-gap: 26px; column-gap: 20px; }
.premium-modern-card {
  border: 1px solid var(--v5-border);
  border-radius: var(--v5-radius-3);
  box-shadow: none;
  background: #fff;
}

.premium-modern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v5-shadow-1);
}

.premium-modern-card__title { font-weight: 900; }
.premium-modern-card__desc { color: var(--v5-text-muted); }
.premium-modern-card__action { box-shadow: none; background: #0b1220; }
.premium-modern-card__action::before,
.premium-modern-card__action::after { display: none !important; }

/* Detail */
.premium-modern-detail-title { font-size: clamp(30px, 4vw, 44px); font-weight: 950; line-height: 1.08; }
.premium-modern-detail-subtitle { color: var(--v5-text-muted); font-size: 17px; }
.abnb-mosaic-gallery { border-radius: var(--v5-radius-3); border: 1px solid var(--v5-border); }
.premium-booking-card, .premium-modern-form-section, .blog_right_sidebar {
  border: 1px solid var(--v5-border);
  border-radius: var(--v5-radius-3);
  box-shadow: var(--v5-shadow-1);
}

.premium-modern-input {
  border: 1px solid var(--v5-border);
  border-radius: 14px;
}

/* Footer */
.abnb-footer.luxe-footer { background: #0b1220; border-top: 1px solid rgba(255,255,255,0.08); }
.abnb-footer-grid { border-bottom: 1px solid rgba(255,255,255,0.08); }
.abnb-footer.luxe-footer .abnb-footer-column h4 { color: rgba(255,255,255,0.92); }
.abnb-footer.luxe-footer .abnb-footer-column ul li a { color: rgba(255,255,255,0.62); }
.abnb-footer.luxe-footer .abnb-footer-column ul li a:hover { color: rgba(255,255,255,0.92); }

/* Mobile */
@media (max-width: 991px) {
  .luxe-header-top { display: none; }
  .abnb-user-menu.luxe-menu-panel { display: none !important; }
  .luxe-hero { padding-top: 30px; }
  .abnb-section { padding: 42px 0; }
  .luxe-stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .luxe-hero__content { padding: 24px 16px; border-radius: 20px; }
  .luxe-hero h1 { font-size: 34px; }
  .luxe-hero p { font-size: 16px; }
  .premium-booking-widget { padding: 20px; border-radius: 16px; }
}

/* ========================================================================= */
/* V6 FINAL CONSOLIDATED LAYER (single source in airbnb.css)                */
/* ========================================================================= */

:root {
  --v6-bg: #ffffff;
  --v6-surface: #ffffff;
  --v6-surface-soft: #f8fafc;
  --v6-text: #0f172a;
  --v6-muted: #475569;
  --v6-border: rgba(15, 23, 42, 0.08); /* Sophisticated thin borders */
  --v6-primary: #1d4ed8;
  --v6-primary-hover: #1e3a8a;
  --v6-dark: #0b1220;
  
  /* Upgraded Radius Scale */
  --v6-radius-sm: 14px;
  --v6-radius-md: 20px;
  --v6-radius-lg: 28px;
  --v6-radius-xl: 36px;
  
  /* Immersive Multi-Layer Shadows */
  --v6-shadow-1: 0 4px 16px rgba(15, 23, 42, 0.04), 0 2px 4px rgba(15, 23, 42, 0.02);
  --v6-shadow-2: 0 16px 48px rgba(15, 23, 42, 0.08), 0 6px 16px rgba(15, 23, 42, 0.04);
  --v6-shadow-3: 0 32px 80px rgba(15, 23, 42, 0.12), 0 12px 24px rgba(15, 23, 42, 0.06);
}

html, body {
  background: var(--v6-bg) !important;
  color: var(--v6-text) !important;
}

.abnb-container {
  max-width: 1280px !important;
  padding: 0 28px !important;
}

@media (max-width: 767px) {
  .abnb-container {
    padding: 0 16px !important;
  }
}

.abnb-section {
  padding: 64px 0 !important;
}

@media (max-width: 991px) {
  .abnb-section {
    padding: 46px 0 !important;
  }
}

/* Typography */
.abnb-section-title {
  font-size: clamp(30px, 3vw, 44px) !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
}

.luxe-subtitle,
.abnb-call-text,
.premium-modern-card__desc,
.premium-modern-detail-subtitle {
  color: var(--v6-muted) !important;
}

/* Buttons */
.premium-btn-primary,
.abnb-btn-primary,
.premium-booking-widget__btn,
.button-contact {
  background: var(--v6-primary) !important;
  border-color: var(--v6-primary) !important;
  border-radius: 14px !important;
  font-weight: 900 !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22) !important;
}

.premium-btn-primary:hover,
.abnb-btn-primary:hover,
.premium-booking-widget__btn:hover,
.button-contact:hover {
  background: var(--v6-primary-hover) !important;
  border-color: var(--v6-primary-hover) !important;
  transform: translateY(-2px);
}

.premium-btn-outline,
.abnb-btn-outline,
.premium-btn-secondary {
  border-radius: 14px !important;
  border-color: var(--v6-border) !important;
}

/* Header */
.luxe-header {
  background: rgba(255, 255, 255, 0.93) !important;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v6-border) !important;
}

.luxe-header.is-scrolled {
  box-shadow: var(--v6-shadow-1) !important;
}

.abnb-logo img {
  height: 56px !important;
}

.abnb-user-menu__link {
  font-weight: 900 !important;
  color: var(--v6-muted) !important;
}

.abnb-user-menu__link:hover,
.abnb-user-menu__link.active {
  color: var(--v6-text) !important;
}

/* Hero */
.luxe-hero {
  padding: 54px 0 20px !important;
}

.luxe-hero__content {
  background: var(--v6-surface) !important;
  border: 1px solid var(--v6-border) !important;
  border-radius: var(--v6-radius-xl) !important;
  box-shadow: var(--v6-shadow-1) !important;
}

.luxe-hero h1 {
  font-size: clamp(36px, 5vw, 60px) !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
}

.luxe-hero p {
  font-size: 18px !important;
}

/* Stats */
.luxe-stats-grid {
  gap: 14px !important;
}

.luxe-stat-card {
  border: 1px solid var(--v6-border) !important;
  border-radius: var(--v6-radius-md) !important;
  box-shadow: none !important;
}

.luxe-stat-card:hover {
  box-shadow: var(--v6-shadow-1) !important;
}

/* Cards */
.abnb-catalog-grid {
  row-gap: 26px !important;
  column-gap: 20px !important;
}

.premium-modern-card {
  background: #fff !important;
  border: 1px solid var(--v6-border) !important;
  border-radius: var(--v6-radius-lg) !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03), 0 10px 24px rgba(15, 23, 42, 0.06) !important;
}

.premium-modern-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--v6-shadow-2) !important;
}

.premium-modern-card__image-box {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.premium-modern-card__img {
  transition: transform 0.55s ease !important;
}

.premium-modern-card:hover .premium-modern-card__img {
  transform: scale(1.05);
}

.premium-modern-card__badge {
  background: rgba(11, 18, 32, 0.86) !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
}

.premium-modern-card__location-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--v6-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--v6-text);
  font-size: 11px;
  font-weight: 900;
}

.premium-modern-card__body {
  padding: 18px !important;
}

.premium-modern-card__title {
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

.premium-modern-card__meta {
  margin-top: 7px !important;
}

.premium-modern-card__meta-rating svg {
  color: #f59e0b !important;
}

.premium-modern-card__fact {
  border: 1px solid rgba(37, 99, 235, 0.16) !important;
  background: #f7faff !important;
  color: #2a4479 !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
}

.premium-modern-card__price-amount {
  font-size: 24px !important;
  font-weight: 950 !important;
}

.premium-modern-card__action {
  background: var(--v6-dark) !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

.premium-modern-card:hover .premium-modern-card__action {
  background: var(--v6-primary) !important;
}

.premium-modern-card__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.premium-modern-card__trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  color: #5b677a;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.premium-modern-card__trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v6-primary);
}

/* Soft animation layer */
@keyframes abnb-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes abnb-cta-glow {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
  }
  50% {
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.34);
  }
}

.abnb-sales-card,
.abnb-detail-trust-card,
.premium-modern-card {
  animation: abnb-fade-up 0.55s ease both;
}

.abnb-sales-card:nth-child(2),
.abnb-detail-trust-card:nth-child(2),
.premium-modern-card:nth-child(2) {
  animation-delay: 0.06s;
}

.abnb-sales-card:nth-child(3),
.abnb-detail-trust-card:nth-child(3),
.premium-modern-card:nth-child(3) {
  animation-delay: 0.12s;
}

.abnb-sales-card:nth-child(4),
.premium-modern-card:nth-child(4) {
  animation-delay: 0.18s;
}

.abnb-call-box .premium-btn-primary,
.luxe-hero__actions .premium-btn-primary {
  animation: abnb-cta-glow 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .abnb-sales-card,
  .abnb-detail-trust-card,
  .premium-modern-card,
  .abnb-call-box .premium-btn-primary,
  .luxe-hero__actions .premium-btn-primary {
    animation: none !important;
  }
}

/* ========================================================================= */
/* V7 LAYOUT STABILIZATION (fix crooked layout)                              */
/* ========================================================================= */

/* Header/nav alignment */
.abnb-header__inner {
  width: 100%;
  gap: 14px !important;
}

.abnb-user-menu.luxe-menu-panel {
  flex-wrap: nowrap !important;
  gap: 6px !important;
}

.abnb-user-menu__link {
  white-space: nowrap;
}

/* Hero consistency */
.luxe-hero__content > p,
.luxe-hero__trust {
  max-width: 860px;
}

/* Sales + steps blocks */
.abnb-steps-head {
  margin-bottom: 22px;
}

.abnb-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.abnb-step-card {
  border: 1px solid var(--v6-border);
  border-radius: 18px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.abnb-step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--v6-shadow-1);
}

.abnb-step-card__num {
  display: inline-flex;
  min-width: 38px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: var(--v6-primary);
  font-size: 12px;
  font-weight: 900;
}

.abnb-step-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--v6-text);
}

.abnb-step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--v6-muted);
}

/* Catalog/card alignment */
.abnb-catalog-grid {
  align-items: stretch;
}

.premium-modern-card {
  height: 100% !important;
}

.premium-modern-card__body {
  display: flex;
  flex-direction: column;
  min-height: 255px;
}

.premium-modern-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.premium-modern-card__footer {
  margin-top: auto;
  gap: 10px;
}

.premium-modern-card__action {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Detail layout stabilization */
.abnb-detail-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  column-gap: 38px !important;
  row-gap: 28px !important;
}

.abnb-detail-content {
  min-width: 0;
}

.abnb-detail-sidebar {
  width: 100% !important;
  position: sticky !important;
  top: 96px !important;
}

/* Make trust cards equal height */
.abnb-detail-trust-grid {
  align-items: stretch;
}

.abnb-detail-trust-card {
  height: 100%;
}

/* Gallery safety refinements */
.abnb-mosaic-gallery {
  max-width: 100%;
}

.abnb-mosaic-main,
.abnb-mosaic-side {
  min-width: 0;
}

/* Footer grid stabilization */
.abnb-footer-grid {
  align-items: start;
}

.abnb-footer-column {
  min-width: 0;
}

/* Mobile hard fixes */
@media (max-width: 991px) {
  .abnb-detail-layout {
    grid-template-columns: 1fr !important;
    row-gap: 22px !important;
  }

  .abnb-detail-sidebar {
    position: static !important;
    top: auto !important;
  }

  .abnb-steps-grid {
    grid-template-columns: 1fr;
  }

  .premium-modern-card__body {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .premium-modern-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-modern-card__action {
    width: 100%;
    justify-content: center;
  }

  .abnb-sales-card,
  .abnb-step-card,
  .abnb-detail-trust-card {
    padding: 16px;
    border-radius: 14px;
  }
}

@media (max-width: 374px) {
  .abnb-container {
    padding: 0 12px !important;
  }
}

/* ========================================================================= */
/* V8 SALES + POLISH PACK (batch improvements)                               */
/* ========================================================================= */

/* Line-clamp standards to avoid warnings */
.premium-popular-item__info h4 {
  line-clamp: 2;
}

.premium-modern-card__title {
  line-clamp: 2;
}

.premium-modern-card__desc {
  line-clamp: 3;
}

/* Stronger premium interactions without visual noise */
.premium-btn-primary,
.abnb-btn-primary,
.premium-btn-secondary,
.premium-modern-card,
.abnb-sales-card,
.abnb-step-card,
.abnb-detail-trust-card,
.premium-booking-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.premium-btn-primary,
.abnb-btn-primary {
  position: relative;
  overflow: hidden;
}

.premium-btn-primary::after,
.abnb-btn-primary::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 44%;
  height: 360%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.premium-btn-primary:hover::after,
.abnb-btn-primary:hover::after {
  opacity: 1;
  animation: abnb-btn-sheen 1.15s ease;
}

.premium-btn-primary:hover,
.abnb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.30) !important;
}

.premium-btn-primary:active,
.abnb-btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.premium-btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.premium-modern-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--v6-shadow-2);
  border-color: rgba(37, 99, 235, 0.24);
}

.premium-modern-card:hover .premium-modern-card__img {
  transform: scale(1.045);
}

.premium-modern-card__image-box {
  overflow: hidden;
}

.premium-modern-card__img {
  transition: transform 0.38s ease;
}

.premium-modern-card__action {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.premium-modern-card:hover .premium-modern-card__action {
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.30);
}

/* Detail page form/social proof */
.abnb-form-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: -2px 0 14px;
}

.abnb-form-proof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--v6-border);
  background: #f8fbff;
  color: #18407d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.abnb-form-note {
  margin: 11px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--v6-muted);
  text-align: center;
}

.premium-booking-card__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 14px;
}

.premium-booking-card__proof-item {
  border: 1px solid var(--v6-border);
  border-radius: 12px;
  background: #f8fbff;
  text-align: center;
  padding: 8px 6px;
}

.premium-booking-card__proof-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: #0f2f62;
  font-weight: 900;
}

.premium-booking-card__proof-item span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.25;
  color: #4e5c72;
}

.premium-booking-card__benefits li {
  border-radius: 10px;
}

/* Keep side blocks cleanly aligned */
.abnb-detail-content > * {
  max-width: 100%;
}

.abnb-detail-additional table,
.abnb-detail-additional img,
.premium-modern-text-content img,
.premium-modern-text-content table {
  max-width: 100%;
}

/* Animation keyframes for button sheen */
@keyframes abnb-btn-sheen {
  0% {
    transform: translateX(-140%) rotate(24deg);
  }
  100% {
    transform: translateX(360%) rotate(24deg);
  }
}

@media (max-width: 991px) {
  .abnb-form-proof {
    grid-template-columns: 1fr;
  }

  .premium-booking-card__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .premium-booking-card__proof {
    grid-template-columns: 1fr;
  }

  .premium-booking-card__proof-item {
    text-align: left;
    padding: 10px 12px;
  }

  .abnb-form-proof span {
    justify-content: flex-start;
    text-align: left;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-btn-primary::after,
  .abnb-btn-primary::after {
    display: none !important;
  }
}

/* ========================================================================= */
/* V9 FINAL PAGE POLISH (contact/listing/tour/about/thank-you)               */
/* ========================================================================= */

.abnb-contact-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.abnb-contact-proof__item {
  border: 1px solid var(--v6-border);
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

.abnb-contact-proof__item strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  color: #163a75;
}

.abnb-contact-proof__item span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #5a677b;
}

.abnb-contact-guarantee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.abnb-contact-guarantee__card {
  border: 1px solid var(--v6-border);
  border-radius: 16px;
  padding: 14px;
  background: #f8fbff;
}

.abnb-contact-guarantee__card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--v6-text);
}

.abnb-contact-guarantee__card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--v6-muted);
}

.abnb-listing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.abnb-listing-steps__item {
  border: 1px solid var(--v6-border);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.abnb-listing-steps__item span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--v6-primary);
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}

.abnb-listing-steps__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--v6-text);
  font-weight: 600;
}

.abnb-listing-bottom-note {
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--v6-border);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  text-align: center;
}

.abnb-listing-bottom-note p {
  margin: 0 0 12px;
  color: var(--v6-muted);
}

.abnb-tour-hero-proof {
  margin-top: 14px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.abnb-tour-hero-proof span {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #1e355a;
  font-weight: 700;
}

/* /tour — отступ под hero + CTA колонкой */
.luxe-page-hero--tour {
  margin-bottom: 100px !important;
}

.luxe-tour-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.luxe-tour-hero-cta .abnb-tour-hero-proof {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.luxe-tour-hero-cta .abnb-tour-hero-proof span {
  text-align: center;
}

.abnb-tour-sales {
  margin-top: 24px;
  border: 1px solid var(--v6-border);
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  text-align: center;
}

.abnb-tour-sales h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--v6-text);
}

.abnb-tour-sales p {
  margin: 0 auto 14px;
  max-width: 700px;
  color: var(--v6-muted);
}

.abnb-about-proof {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.abnb-about-proof__card {
  border: 1px solid var(--v6-border);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.abnb-about-proof__card h4 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 800;
  color: var(--v6-text);
}

.abnb-about-proof__card p {
  margin: 0;
  color: var(--v6-muted);
  font-size: 14px;
  line-height: 1.55;
}

.abnb-thankyou-next {
  margin: 16px 0 18px;
  display: grid;
  gap: 8px;
}

.abnb-thankyou-next__item {
  border: 1px solid var(--v6-border);
  border-radius: 12px;
  background: #f8fbff;
  padding: 10px 12px;
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
  color: #274068;
  font-weight: 600;
}

@media (max-width: 991px) {
  .abnb-contact-proof,
  .abnb-contact-guarantee,
  .abnb-listing-steps,
  .abnb-about-proof {
    grid-template-columns: 1fr;
  }
}

/* Detail */
.premium-modern-detail-title {
  font-size: clamp(34px, 4vw, 52px) !important;
  font-weight: 950 !important;
  letter-spacing: -0.04em !important;
}

.premium-modern-detail-subtitle {
  font-size: 18px !important;
}

.abnb-detail-layout {
  gap: 44px !important;
}

.abnb-detail-trust-grid {
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.abnb-detail-trust-card {
  border: 1px solid var(--v6-border);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.abnb-detail-trust-card h4 {
  margin: 0 0 6px;
  color: var(--v6-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.abnb-detail-trust-card p {
  margin: 0;
  color: var(--v6-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* === CRITICAL: GALLERY FIX === */
/* Keep robust desktop mosaic */
.abnb-mosaic-gallery {
  display: flex !important;
  height: 500px !important;
  gap: 8px !important;
  margin-bottom: 40px !important;
  border-radius: var(--v6-radius-lg) !important;
  border: 1px solid var(--v6-border) !important;
  overflow: hidden !important;
  box-shadow: var(--v6-shadow-1) !important;
}

.abnb-mosaic-main {
  flex: 1 !important;
  position: relative !important;
}

.abnb-mosaic-side {
  flex: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.abnb-mosaic-main a,
.abnb-mosaic-side a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.abnb-mosaic-main img,
.abnb-mosaic-side img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.45s ease !important;
}

.abnb-mosaic-main a:hover img,
.abnb-mosaic-side a:hover img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .abnb-mosaic-gallery {
    height: 420px !important;
  }
}

/* Stable mobile gallery */
@media (max-width: 767px) {
  .abnb-mosaic-gallery {
    display: flex !important;
    height: 260px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding: 0 16px !important;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .abnb-mosaic-gallery::-webkit-scrollbar {
    display: none !important;
  }

  .abnb-mosaic-main,
  .abnb-mosaic-side,
  .abnb-mosaic-gallery > div[style="display:none;"] {
    display: contents !important;
  }

  .abnb-mosaic-gallery a {
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
    border-radius: var(--v6-radius-md) !important;
    overflow: hidden !important;
    border: 1px solid var(--v6-border) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12) !important;
  }

  .abnb-mosaic-gallery a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* Booking/sidebar/forms */
.premium-booking-card,
.premium-modern-form-section,
.premium-booking-widget,
.contact_form {
  border: 1px solid var(--v6-border) !important;
  border-radius: var(--v6-radius-lg) !important;
  box-shadow: var(--v6-shadow-1) !important;
}

.premium-booking-card__price-amount {
  font-size: 32px !important;
  font-weight: 950 !important;
}

.premium-modern-input,
.premium-booking-widget__input,
.contact_form .form-control,
.different-control {
  border: 1px solid var(--v6-border) !important;
  border-radius: 14px !important;
}

/* Footer */
.abnb-footer.luxe-footer {
  margin-top: 64px !important;
  padding-top: 58px !important;
  background: linear-gradient(180deg, #121b30 0%, #0b1324 100%) !important;
}

.abnb-footer-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.abnb-footer-brand__text {
  color: rgba(255, 255, 255, 0.60) !important;
}

.abnb-footer-pill {
  border-radius: 999px !important;
}

/* Mobile cleanup */
@media (max-width: 991px) {
  .luxe-header-top {
    display: none !important;
  }

  .abnb-user-menu.luxe-menu-panel {
    display: none !important;
  }

  .luxe-hero {
    padding-top: 30px !important;
  }

  .luxe-hero__content {
    border-radius: 22px !important;
    padding: 26px 18px !important;
  }

  .luxe-hero h1 {
    font-size: clamp(30px, 8.8vw, 42px) !important;
    line-height: 1.08 !important;
  }

  .luxe-stats-grid {
    grid-template-columns: 1fr !important;
  }

  .abnb-detail-trust-grid {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .luxe-hero__actions .premium-btn-primary,
  .luxe-hero__actions .premium-btn-outline {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .luxe-hero__trust {
    gap: 6px;
  }

  .luxe-hero__trust-item {
    font-size: 11px;
    padding: 6px 10px;
  }

  .premium-modern-card__trust-strip span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .premium-booking-widget__row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .premium-booking-widget__btn {
    width: 100%;
    min-height: 52px;
  }
}

/* Sales copy blocks */
.abnb-sales-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.abnb-sales-card {
  background: #fff;
  border: 1px solid var(--v6-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.abnb-sales-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--v6-shadow-1);
}

.abnb-sales-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--v6-text);
  line-height: 1.25;
}

.abnb-sales-card p {
  margin: 0;
  color: var(--v6-muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .abnb-sales-grid {
    grid-template-columns: 1fr;
  }
}

/* Selling block in booking card */
.premium-booking-card__benefits {
  margin: 0 0 16px;
  padding: 12px 0 4px;
  list-style: none;
  border-top: 1px solid var(--v6-border);
}

.premium-booking-card__benefits li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  color: var(--v6-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.premium-booking-card__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v6-primary);
}

/* ========================================================================= */
/* V10 DESKTOP ALIGNMENT + PREMIUM MOTION                                    */
/* ========================================================================= */
@media (min-width: 992px) {
  /* Unified vertical rhythm on desktop */
  .abnb-section + .abnb-section {
    margin-top: 8px;
  }

  .section-intro,
  .abnb-section-header {
    margin-bottom: 22px !important;
  }

  .abnb-contact-proof,
  .abnb-listing-steps,
  .abnb-about-proof,
  .abnb-tour-sales,
  .abnb-listing-bottom-note,
  .abnb-detail-trust-grid {
    margin-top: 18px;
  }

  .luxe-contact-section .row {
    align-items: stretch;
    row-gap: 18px;
  }

  .luxe-contact-section .contact_form {
    min-height: 100%;
    padding: 22px 18px;
  }

  .abnb-contact-guarantee__card,
  .abnb-about-proof__card,
  .abnb-tour-sales,
  .abnb-listing-bottom-note,
  .abnb-step-card,
  .abnb-sales-card,
  .abnb-detail-trust-card {
    position: relative;
    overflow: hidden;
  }

  .abnb-contact-guarantee__card::before,
  .abnb-about-proof__card::before,
  .abnb-tour-sales::before,
  .abnb-listing-bottom-note::before,
  .abnb-step-card::before,
  .abnb-sales-card::before,
  .abnb-detail-trust-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 36%;
    height: 340%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    opacity: 0;
    pointer-events: none;
  }

  .abnb-contact-guarantee__card:hover::before,
  .abnb-about-proof__card:hover::before,
  .abnb-tour-sales:hover::before,
  .abnb-listing-bottom-note:hover::before,
  .abnb-step-card:hover::before,
  .abnb-sales-card:hover::before,
  .abnb-detail-trust-card:hover::before {
    opacity: 1;
    animation: abnb-card-sheen 1.25s ease;
  }

  /* More premium spacing in detail page desktop */
  .premium-modern-detail-header {
    margin-bottom: 18px;
  }

  .premium-modern-description,
  .premium-modern-form-section,
  .premium-modern-popular-widget {
    margin-top: 28px !important;
  }
}

/* Smooth decorative motion */
@keyframes abnb-card-sheen {
  0% {
    transform: translateX(-140%) rotate(18deg);
  }
  100% {
    transform: translateX(380%) rotate(18deg);
  }
}

@keyframes abnb-soft-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.abnb-tour-hero-proof span:nth-child(2),
.abnb-form-proof span:nth-child(2),
.premium-booking-card__proof-item:nth-child(2) {
  animation: abnb-soft-float 3.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .abnb-tour-hero-proof span:nth-child(2),
  .abnb-form-proof span:nth-child(2),
  .premium-booking-card__proof-item:nth-child(2) {
    animation: none !important;
  }
}

/* ========================================================================= */
/* V11 MICRO POLISH (final desktop pass)                                     */
/* ========================================================================= */
@media (min-width: 1200px) {
  .abnb-container {
    max-width: 1280px;
  }

  .luxe-hero__content {
    padding: 56px 58px !important;
  }

  .luxe-hero h1 {
    max-width: 980px;
    letter-spacing: -0.032em;
  }

  .luxe-hero__content > p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.65;
  }

  .abnb-sales-grid,
  .abnb-steps-grid {
    gap: 16px;
  }

  .abnb-sales-card,
  .abnb-step-card,
  .abnb-detail-trust-card,
  .abnb-contact-guarantee__card,
  .abnb-about-proof__card {
    border-radius: 20px;
  }

  .premium-modern-card {
    border-radius: 24px !important;
  }

  .premium-modern-card__body {
    padding: 20px 20px 18px;
  }

  .premium-modern-card__title {
    font-size: 23px;
    letter-spacing: -0.02em;
    line-height: 1.22;
    margin-bottom: 8px;
  }

  .premium-modern-card__desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .premium-modern-card__facts {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .premium-modern-card__footer {
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .premium-modern-card__price-amount {
    font-size: 24px;
    letter-spacing: -0.02em;
  }

  .premium-modern-card__action {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 800;
  }

  .abnb-detail-layout {
    grid-template-columns: minmax(0, 1fr) 372px !important;
    column-gap: 42px !important;
  }

  .premium-booking-card,
  .premium-modern-form-section,
  .premium-modern-popular-widget {
    border-radius: 22px !important;
  }

  .premium-booking-card {
    padding: 22px !important;
  }

  .premium-booking-card__price-amount {
    font-size: 34px !important;
    letter-spacing: -0.028em;
  }

  .premium-booking-card__text {
    font-size: 14px;
    line-height: 1.62;
  }

  .abnb-form-proof span {
    min-height: 38px;
  }
}

@media (min-width: 992px) {
  .premium-btn-primary,
  .premium-btn-secondary,
  .abnb-btn-primary,
  .button-contact {
    min-height: 48px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .abnb-sales-card h3,
  .abnb-step-card h3,
  .abnb-about-proof__card h4 {
    letter-spacing: -0.015em;
  }

  .abnb-sales-card p,
  .abnb-step-card p,
  .abnb-about-proof__card p,
  .abnb-contact-guarantee__card p {
    line-height: 1.62;
  }

  .abnb-contact-proof__item,
  .abnb-listing-steps__item,
  .abnb-tour-hero-proof span {
    backdrop-filter: saturate(130%) blur(2px);
  }

  .premium-modern-card:hover,
  .abnb-sales-card:hover,
  .abnb-step-card:hover,
  .abnb-detail-trust-card:hover,
  .abnb-about-proof__card:hover,
  .abnb-contact-guarantee__card:hover {
    transform: translateY(-6px);
  }
}

/* ========================================================================= */
/* V13 COMPLETE OVERHAUL (hero, icons, forms, spacing, animations)           */
/* ========================================================================= */

/* === HERO OVERHAUL === */
.luxe-hero {
  padding: 32px 0 28px !important;
  background: linear-gradient(168deg, #f0f5ff 0%, #ffffff 55%, #f7faff 100%) !important;
}

.luxe-hero__content {
  max-width: 880px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding: 52px 42px 46px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  backdrop-filter: saturate(180%) blur(28px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 36px !important;
  box-shadow: var(--v6-shadow-2) !important;
}

.luxe-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10) 0%, rgba(96, 165, 250, 0.08) 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  animation: abnb-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.luxe-hero__badge svg {
  flex-shrink: 0;
}

.luxe-hero h1 {
  margin: 0 auto 16px !important;
  font-size: clamp(30px, 4.2vw, 48px) !important;
  font-weight: 850 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  color: #0b1324 !important;
  max-width: 760px;
}

.luxe-hero h1 span {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.luxe-hero__desc {
  margin: 0 auto 22px !important;
  max-width: 640px;
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: #4b5563 !important;
  font-weight: 400;
}

.luxe-hero__actions {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-bottom: 20px !important;
}

.luxe-hero__actions .premium-btn-primary,
.luxe-hero__actions .premium-btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 52px !important;
  padding: 0 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 14px !important;
  text-decoration: none !important;
}

.luxe-hero__actions .premium-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.28), 0 1px 3px rgba(37, 99, 235, 0.12) !important;
}

.luxe-hero__actions .premium-btn-outline {
  background: #fff !important;
  color: #1e293b !important;
  border: 1.5px solid #d1d5db !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06) !important;
}

.luxe-hero__actions .premium-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.35) !important;
}

.luxe-hero__actions .premium-btn-outline:hover {
  background: #f9fafb !important;
  border-color: #9ca3af !important;
  transform: translateY(-1px) !important;
}

.luxe-hero__trust {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.luxe-hero__trust-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

.luxe-hero__trust-item svg {
  color: #2563eb;
  flex-shrink: 0;
}

/* === ADVANTAGES GRID (replaces old sales-grid) === */
.abnb-advantages-section {
  padding-top: 8px !important;
}

.abnb-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.abnb-advantage-card {
  background: #fff;
  border: 1px solid var(--v6-border);
  border-radius: 20px;
  padding: 24px 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.abnb-advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.09);
  border-color: rgba(37, 99, 235, 0.18);
}

.abnb-advantage-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(96, 165, 250, 0.06) 100%);
  color: #2563eb;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.abnb-advantage-card:hover .abnb-advantage-card__icon {
  transform: scale(1.08);
}

.abnb-advantage-card:hover .abnb-advantage-card__icon svg {
  animation: abnb-icon-pulse 0.6s ease;
}

@keyframes abnb-icon-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.abnb-advantage-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--v6-text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.abnb-advantage-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

/* === STEPS OVERHAUL === */
.abnb-steps-section {
  background: #f8fafc !important;
}

.abnb-steps-head {
  text-align: center;
  margin-bottom: 28px;
}

.abnb-steps-head__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.abnb-steps-head__desc {
  max-width: 620px;
  margin: 8px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

.abnb-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.abnb-step-card {
  background: #fff;
  border: 1px solid var(--v6-border);
  border-radius: 20px;
  padding: 24px 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.abnb-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.abnb-step-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(96, 165, 250, 0.06));
  color: #2563eb;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.abnb-step-card:hover .abnb-step-card__num {
  transform: scale(1.08);
}

.abnb-step-card:hover .abnb-step-card__num svg {
  animation: abnb-icon-pulse 0.6s ease;
}

.abnb-step-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--v6-text);
  line-height: 1.3;
}

.abnb-step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

/* === STATS OVERHAUL === */
.abnb-stats-section {
  padding-top: 8px !important;
}

.luxe-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.luxe-stat-card {
  background: #fff !important;
  border: 1px solid var(--v6-border) !important;
  border-radius: 20px !important;
  padding: 24px 20px !important;
  text-align: center !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease !important;
}

.luxe-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.luxe-stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(96, 165, 250, 0.06));
  color: #2563eb;
  margin: 0 auto 12px;
}

.luxe-stat-card strong {
  display: block !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  color: var(--v6-text) !important;
  line-height: 1.15 !important;
  margin-bottom: 4px !important;
}

.luxe-stat-card span {
  font-size: 14px !important;
  color: #64748b !important;
  font-weight: 500 !important;
}

/* === SECTION HEADER OVERHAUL === */
.abnb-section-header {
  text-align: center !important;
  margin-bottom: 28px !important;
}

.abnb-section-header__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.abnb-section-header__desc {
  max-width: 620px;
  margin: 8px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

.abnb-section-title {
  font-size: clamp(26px, 3.5vw, 38px) !important;
  font-weight: 850 !important;
  letter-spacing: -0.03em !important;
  color: var(--v6-text) !important;
  line-height: 1.15 !important;
  margin: 0 0 4px !important;
}

/* Remove old luxe-eyebrow in favor of badge (fix wrapping) */
.luxe-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  white-space: nowrap !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border: none !important;
}

.luxe-eyebrow svg {
  flex-shrink: 0;
}

.luxe-subtitle {
  max-width: 620px !important;
  margin: 8px auto 0 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
}

/* === CTA BOX OVERHAUL === */
.abnb-cta-section {
  background: #f8fafc !important;
}

.abnb-call-box {
  border: 1px solid var(--v6-border) !important;
  border-radius: 24px !important;
  background: #fff !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.abnb-call-box:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08) !important;
}

.abnb-call-box__inner {
  padding: 42px 36px;
  text-align: center;
}

.abnb-call-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(96, 165, 250, 0.06)) !important;
  color: #2563eb !important;
  margin: 0 auto 20px !important;
}

.abnb-call-title {
  font-size: clamp(22px, 3vw, 30px) !important;
  font-weight: 850 !important;
  letter-spacing: -0.025em !important;
  color: var(--v6-text) !important;
  margin: 0 0 12px !important;
  line-height: 1.2 !important;
}

.abnb-call-text {
  max-width: 580px !important;
  margin: 0 auto 20px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
}

/* === FORM PADDING FIX === */
.premium-modern-form,
.contact_form,
.modal-form {
  padding: 0 !important;
}

.premium-modern-input,
.contact_form .form-control,
.different-control {
  padding: 16px 18px !important;
  font-size: 15px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  border-radius: 16px !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  transition: all 0.3s ease !important;
}

.premium-modern-input:focus,
.contact_form .form-control:focus,
.different-control:focus {
  background: #fff !important;
  border-color: #1d4ed8 !important;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12) !important;
  outline: none !important;
}

.premium-modern-input::placeholder,
.contact_form .form-control::placeholder,
.different-control::placeholder {
  color: #94a3b8 !important;
}

.abnb-form__row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.abnb-form__group {
  width: 100% !important;
}

.premium-modern-form-section {
  padding: 28px 24px !important;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 991px) {
  .abnb-advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .luxe-hero__content {
    padding: 36px 24px 32px !important;
    border-radius: 22px !important;
  }

  .abnb-call-box__inner {
    padding: 32px 22px;
  }
}

@media (max-width: 767px) {
  .luxe-hero {
    padding: 18px 0 20px !important;
  }

  .luxe-hero__content {
    padding: 28px 18px 26px !important;
    border-radius: 18px !important;
  }

  .luxe-hero h1 {
    font-size: 28px !important;
  }

  .luxe-hero__desc {
    font-size: 15px !important;
  }

  .luxe-hero__actions {
    flex-direction: column !important;
  }

  .luxe-hero__actions .premium-btn-primary,
  .luxe-hero__actions .premium-btn-outline {
    width: 100% !important;
    justify-content: center !important;
  }

  .luxe-hero__trust {
    flex-direction: column !important;
    align-items: center !important;
  }

  .abnb-advantages-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .abnb-advantage-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .abnb-steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .abnb-step-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .luxe-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .abnb-form__row {
    grid-template-columns: 1fr !important;
  }

  .premium-modern-form-section {
    padding: 20px 16px !important;
  }

  .abnb-call-box__inner {
    padding: 24px 16px;
  }
}

/* ========================================================================= */
/* V12 FINAL FIXES (gaps, alignment, stable animations)                      */
/* ========================================================================= */

/* Keep reveal classes animated even without extra JS */
.v9-reveal,
.v9-reveal-left,
.v9-reveal-right,
.v9-reveal-scale {
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

.v9-reveal,
.v9-reveal-left,
.v9-reveal-right {
  animation-name: abnb-fade-up;
}

.v9-reveal-scale {
  animation-name: abnb-reveal-scale;
}

.v9-stagger > *:nth-child(2) { animation-delay: 0.08s; }
.v9-stagger > *:nth-child(3) { animation-delay: 0.16s; }
.v9-stagger > *:nth-child(4) { animation-delay: 0.24s; }
.v9-stagger > *:nth-child(5) { animation-delay: 0.32s; }
.v9-stagger > *:nth-child(6) { animation-delay: 0.40s; }

@keyframes abnb-reveal-scale {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Vertical spacing fixes */
.luxe-page-hero {
  padding-bottom: 20px;
}

.luxe-page-hero + .luxe-contact-section,
.luxe-page-hero + .abnb-section,
.luxe-page-hero + .premium-welcome {
  padding-top: 12px;
}

.luxe-contact-section {
  padding: 24px 0 64px;
}

/* Card/grid alignment fixes */
.abnb-contact-guarantee,
.abnb-about-proof,
.abnb-sales-grid,
.abnb-steps-grid,
.abnb-listing-steps,
.abnb-detail-trust-grid {
  align-items: stretch;
}

.abnb-contact-guarantee__card,
.abnb-about-proof__card,
.abnb-sales-card,
.abnb-step-card,
.abnb-detail-trust-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.abnb-contact-guarantee__card p,
.abnb-about-proof__card p,
.abnb-sales-card p,
.abnb-step-card p,
.abnb-detail-trust-card p {
  margin-top: auto;
}

/* Better block spacing on detail page */
.abnb-detail-trust-grid + .abnb-detail-layout {
  margin-top: 8px;
}

.premium-modern-form-section {
  padding: 22px 20px !important;
}

@media (min-width: 992px) {
  .luxe-page-hero {
    padding-bottom: 26px;
  }

  .luxe-page-hero + .luxe-contact-section,
  .luxe-page-hero + .abnb-section,
  .luxe-page-hero + .premium-welcome {
    padding-top: 18px;
  }

  .luxe-contact-section {
    padding: 32px 0 78px;
  }

  .abnb-listing-bottom-note,
  .abnb-tour-sales {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .luxe-page-hero {
    padding-bottom: 12px;
  }

  .luxe-contact-section {
    padding: 18px 0 44px;
  }

  .premium-modern-form-section {
    padding: 16px 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v9-reveal,
  .v9-reveal-left,
  .v9-reveal-right,
  .v9-reveal-scale,
  .v9-stagger > * {
    animation: none !important;
  }
}

/* ========================================================================= */
/* V14 UNIFIED BUTTONS + FORM BLOCK + ICON GAP FIX                          */
/* ========================================================================= */

/* === UNIFIED BUTTON SYSTEM === */
.abnb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.abnb-btn svg {
  flex-shrink: 0;
}

.abnb-btn--full {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25), 0 1px 3px rgba(37, 99, 235, 0.10);
}

.abnb-btn--full::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 44%;
  height: 360%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
}

.abnb-btn--full:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
  color: #fff;
}

.abnb-btn--full:hover::after {
  opacity: 1;
  animation: abnb-btn-sheen 1.15s ease;
}

.abnb-btn--full:active {
  transform: translateY(1px) scale(0.98);
}

.abnb-btn--outline {
  background: #fff;
  color: #1e293b;
  border: 1.5px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.abnb-btn--outline:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.10);
  color: #1e293b;
}

.abnb-btn--outline:active {
  transform: translateY(0);
}

.w-100.abnb-btn,
.abnb-btn.w-100 {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .abnb-btn--full::after {
    display: none !important;
  }
}

/* === FORM BLOCK (sanatorium detail) === */
.abnb-form-block {
  border: 1px solid var(--v6-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  padding: 32px 28px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.abnb-form-block__header {
  text-align: center;
  margin-bottom: 20px;
}

.abnb-form-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(96, 165, 250, 0.06));
  color: #2563eb;
  margin: 0 auto 16px;
}

.abnb-form-block__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--v6-text);
}

.abnb-form-block__desc {
  margin: 0 auto;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
}

.abnb-form-block__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.abnb-form-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(37, 99, 235, 0.04);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.abnb-form-block__badge svg {
  color: #2563eb;
  flex-shrink: 0;
}

.abnb-form-block__form {
  padding: 0;
}

.abnb-form-block__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 6px;
}

.abnb-form-block__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abnb-form-block__label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  padding-left: 2px;
}

.abnb-form-block__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #1e293b;
  background: #f9fafb;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.abnb-form-block__input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
  background: #fff;
}

.abnb-form-block__input::placeholder {
  color: #94a3b8;
}

.abnb-form-block .abnb-btn {
  width: 100%;
  margin-top: 16px;
}

.abnb-form-block__note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: #94a3b8;
}

@media (max-width: 767px) {
  .abnb-form-block {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .abnb-form-block__fields {
    grid-template-columns: 1fr;
  }

  .abnb-form-block__badges {
    flex-direction: column;
    align-items: center;
  }
}

/* === GLOBAL ICON+TEXT GAP FIX === */
.premium-btn-primary,
.premium-btn-secondary,
.premium-btn-outline,
.abnb-btn-primary,
.abnb-btn-outline,
.button-contact,
.premium-booking-widget__btn,
.premium-modern-card__meta-item,
.premium-modern-card__fact,
.premium-modern-detail-meta span,
.premium-booking-card__hint,
.luxe-header-top__inner a,
.luxe-header-top__inner p,
.abnb-footer-pill,
.contact-info__icon + .media-body,
.premium-welcome__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.premium-btn-primary svg,
.premium-btn-secondary svg,
.premium-btn-outline svg,
.abnb-btn-primary svg,
.abnb-btn-outline svg,
.button-contact svg,
.premium-booking-widget__btn svg,
.abnb-footer-pill svg,
.premium-modern-card__meta-item svg,
.premium-booking-card__hint svg,
.contact-info__icon svg {
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(96, 165, 250, 0.05));
  color: #2563eb;
  flex-shrink: 0;
}

.contact-info .media-body h3 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--v6-text);
}

.contact-info .media-body h3 a {
  color: inherit;
  text-decoration: none;
}

.contact-info .media-body p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* Ensure inline SVG icons in old buttons also have margin via gap */
.premium-btn-primary svg[style*="margin-right"],
.premium-btn-secondary svg[style*="margin-right"],
.premium-btn-outline svg[style*="margin-right"],
.button-contact svg[style*="margin-right"] {
  margin-right: 0 !important;
}

/* Also fix booking widget form */
.premium-booking-widget {
  padding: 28px 24px !important;
  border-radius: 22px !important;
}

.premium-booking-widget__row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.premium-booking-widget__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}

.premium-booking-widget__input {
  padding: 14px 16px !important;
  font-size: 15px !important;
  background: #f9fafb !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
}

.premium-booking-widget__input:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10) !important;
  background: #fff !important;
  outline: none !important;
}

/* ============ GLASS SHEEN для кнопки бронирования ============ */
.premium-booking-widget__btn {
  min-height: 52px !important;
  padding: 0 24px !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25) !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease !important;
  position: relative !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
}

.premium-booking-widget__btn > * {
  position: relative !important;
  z-index: 2 !important;
}

.premium-booking-widget__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.12) 35%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.12) 65%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
  animation: sheen-slide 8s ease-in-out infinite;
}

@keyframes sheen-slide {
  0%  { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}

.premium-booking-widget__btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45) !important;
}

@media (prefers-reduced-motion: reduce) {
  .premium-booking-widget__btn::before {
    animation: none;
    display: none;
  }
}

@media (max-width: 767px) {
  .premium-booking-widget {
    padding: 20px 16px !important;
  }

  .premium-booking-widget__row {
    grid-template-columns: 1fr;
  }
}

/* === /sanatoriums — lead form spacing (desktop only) === */
@media (min-width: 992px) {
  .abnb-sanatoriums-lead-form {
    margin-top: 90px;
  }
}

/* ========================================================================= */
/* V15 DETAIL HERO + POPULAR ITEMS + TEXT SCALE + STATS FIX                  */
/* ========================================================================= */

/* === DETAIL HERO === */
.abnb-detail-hero {
  margin-bottom: 20px;
}

.abnb-detail-hero__top {
  margin-bottom: 10px;
}

.abnb-detail-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
}

.abnb-detail-hero__location svg {
  flex-shrink: 0;
}

.abnb-detail-hero__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--v6-text);
}

.abnb-detail-hero__subtitle {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  max-width: 720px;
}

.abnb-detail-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.abnb-detail-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(37, 99, 235, 0.04);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.abnb-detail-hero__chip svg {
  color: #2563eb;
  flex-shrink: 0;
}

/* === POPULAR ITEMS — PREMIUM REDESIGN === */
.premium-modern-popular-widget {
  border: 1px solid var(--v6-border) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04) !important;
}

.premium-modern-popular-widget .premium-section-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  margin-bottom: 14px !important;
}

.abnb-popular-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.premium-popular-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 10px 12px !important;
  border-radius: 14px !important;
  border: 1px solid var(--v6-border) !important;
  background: #fff !important;
  text-decoration: none !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease !important;
}

.premium-popular-item:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.18) !important;
  background: #fff !important;
}

.premium-popular-item__image {
  width: 72px !important;
  height: 56px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
}

.premium-popular-item:hover .premium-popular-item__image {
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.10);
}

.premium-popular-item__info {
  flex: 1;
  min-width: 0;
}

.premium-popular-item__info h4 {
  margin: 0 0 2px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--v6-text) !important;
  line-height: 1.3 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 1 !important;
  overflow: hidden !important;
}

.premium-popular-item__info span {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2563eb !important;
}

/* === TEXT SCALE FIX ON DETAIL PAGE === */
.premium-modern-text-content,
.premium-modern-text-content p,
.abnb-detail-additional,
.abnb-detail-additional p {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #374151 !important;
}

.premium-modern-text-content h1,
.premium-modern-text-content h2,
.premium-modern-text-content h3,
.abnb-detail-additional h1,
.abnb-detail-additional h2,
.abnb-detail-additional h3 {
  font-size: 20px !important;
  font-weight: 800 !important;
  margin: 20px 0 8px !important;
  color: var(--v6-text) !important;
}

.premium-modern-quotes {
  border-left: 3px solid #2563eb !important;
  padding: 14px 18px !important;
  margin: 20px 0 !important;
  border-radius: 0 12px 12px 0 !important;
  background: rgba(37, 99, 235, 0.03) !important;
}

.premium-modern-quotes p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin: 0 0 8px !important;
}

.premium-modern-quotes p:last-child {
  margin-bottom: 0 !important;
}

.premium-section-title {
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--v6-text) !important;
  margin-bottom: 14px !important;
}

/* === DETAIL TRUST CARDS — ADD ICONS === */
.abnb-detail-trust-card {
  position: relative !important;
  padding: 20px 18px 18px !important;
}

.abnb-detail-trust-card h4 {
  font-size: 15px !important;
  font-weight: 800 !important;
}

.abnb-detail-trust-card p {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

/* === STATS SECTION OVERLAP FIX === */
.abnb-stats-section {
  padding-top: 24px !important;
  margin-top: 8px !important;
  margin-bottom: 60px !important;
}

.abnb-advantages-section + .abnb-steps-section {
  margin-top: 0 !important;
}

.abnb-steps-section + .abnb-stats-section {
  margin-top: 0 !important;
}

/* === BOOKING CARD BUTTONS unified === */
.premium-booking-card .abnb-btn {
  margin-bottom: 10px;
}

.premium-booking-card .abnb-btn:last-of-type {
  margin-bottom: 0;
}

/* === GENERAL MICRO-FIXES === */
.abnb-detail-main {
  padding-top: 24px;
  padding-bottom: 48px;
}

.abnb-mobile-booking {
  margin-bottom: 40px;
}

.abnb-mobile-booking .abnb-btn-primary {
  width: 100%;
  justify-content: center;
}

.premium-modern-description {
  margin-top: 0 !important;
}

.abnb-detail-content > .premium-modern-description:first-of-type {
  margin-top: 4px !important;
}

/* Booking card text scale */
.premium-booking-card__text {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: #64748b !important;
}

.premium-booking-card__hint {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 12px !important;
  color: #94a3b8 !important;
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid var(--v6-border) !important;
}

/* Trust strip in cards — smaller text */
.premium-modern-card__trust-strip {
  margin-top: 8px !important;
  margin-bottom: 10px !important;
}

.premium-modern-card__trust-strip span {
  font-size: 11px !important;
  padding: 4px 8px !important;
}

@media (max-width: 767px) {
  .abnb-detail-hero__title {
    font-size: 26px;
  }

  .abnb-detail-hero__subtitle {
    font-size: 14px;
  }

  .abnb-detail-hero__chips {
    gap: 6px;
  }

  .abnb-detail-hero__chip {
    font-size: 11px;
    padding: 5px 10px;
  }

  .premium-popular-item {
    padding: 8px 10px !important;
  }

  .premium-popular-item__image {
    width: 60px !important;
    height: 48px !important;
  }
}

/* ========================================================================= */
/* V16 SWIPE HINT + FINAL POLISH                                             */
/* ========================================================================= */

/* === SWIPE HINT (mobile gallery) === */
.abnb-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  margin-bottom: 4px;
}

.abnb-swipe-hint__hand {
  color: #2563eb;
  animation: abnb-swipe-hand 1.8s ease-in-out infinite;
}

@keyframes abnb-swipe-hand {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.abnb-swipe-hint__text {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.abnb-swipe-hint__arrow {
  color: #94a3b8;
  animation: abnb-swipe-arrow 1.8s ease-in-out infinite;
}

@keyframes abnb-swipe-arrow {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}

@media (min-width: 992px) {
  .abnb-swipe-hint {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .abnb-swipe-hint__hand,
  .abnb-swipe-hint__arrow {
    animation: none;
  }
}

/* === DETAIL TRUST CARDS — add icons === */
.abnb-detail-trust-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

/* === BOOKING CARD final polish === */
.premium-booking-card {
  padding: 22px !important;
  border-radius: 20px !important;
}

.premium-booking-card__price-row {
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  margin-bottom: 12px !important;
}

.premium-booking-card__price-amount {
  font-size: 30px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  color: var(--v6-text) !important;
}

.premium-booking-card__price-label {
  font-size: 14px !important;
  color: #64748b !important;
  font-weight: 500 !important;
}

/* === CARD (catalog) final polish === */
.premium-modern-card {
  border: 1px solid var(--v6-border) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #fff !important;
}

.premium-modern-card__image-box {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.premium-modern-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.premium-modern-card__badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  z-index: 2 !important;
}

.premium-modern-card__body {
  padding: 16px 18px 18px !important;
}

.premium-modern-card__title {
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.25 !important;
  color: var(--v6-text) !important;
  margin: 0 0 6px !important;
}

.premium-modern-card__meta {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 8px !important;
}

.premium-modern-card__meta-item {
  font-size: 13px !important;
  color: #64748b !important;
  font-weight: 500 !important;
}

.premium-modern-card__meta-item svg {
  width: 14px !important;
  height: 14px !important;
}

.premium-modern-card__meta-rating {
  color: #f59e0b !important;
  font-weight: 700 !important;
}

.premium-modern-card__dot {
  color: #d1d5db !important;
  font-size: 10px !important;
}

.premium-modern-card__desc {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: #64748b !important;
  margin: 0 0 10px !important;
}

.premium-modern-card__facts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-bottom: 8px !important;
}

.premium-modern-card__fact {
  padding: 4px 10px !important;
  border-radius: 999px !important;
  background: #f1f5f9 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #475569 !important;
}

.premium-modern-card__footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.06) !important;
  margin-top: auto !important;
}

.premium-modern-card__price {
  display: flex !important;
  align-items: baseline !important;
  gap: 4px !important;
}

.premium-modern-card__price-from {
  font-size: 13px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

.premium-modern-card__price-amount {
  font-size: 20px !important;
  font-weight: 900 !important;
  color: var(--v6-text) !important;
  letter-spacing: -0.02em !important;
}

.premium-modern-card__price-period {
  font-size: 13px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

.premium-modern-card__action {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 18px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.18) !important;
}

.premium-modern-card:hover .premium-modern-card__action {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.30) !important;
}

/* === CATALOG GRID === */
.abnb-catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

@media (max-width: 991px) {
  .abnb-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 575px) {
  .abnb-catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* === SECTION FOOTER === */
.abnb-section-footer {
  text-align: center !important;
  margin-top: 24px !important;
}

/* === CONTACT PAGE MAP === */
.luxe-contact-section + div iframe {
  border-radius: 18px !important;
  border: 1px solid var(--v6-border) !important;
  margin: 0 16px 32px !important;
}

/* === CONTACT PAGE: layout + form (override global inline-flex на .media-body) === */
.luxe-contact-section .contact-info .media-body {
  display: block !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  text-align: left !important;
}

.luxe-contact-section .contact-info .media-body h3,
.luxe-contact-section .contact-info .media-body p {
  display: block !important;
  width: 100% !important;
}

.luxe-contact-section .contact-info {
  align-items: flex-start !important;
  width: 100%;
  box-sizing: border-box !important;
  border-radius: 16px !important;
  border: 1px solid var(--v6-border) !important;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
  padding: 14px !important;
  min-height: 96px !important;
}

@media (min-width: 992px) {
  .luxe-contact-section .contact-info {
    min-height: 108px !important;
  }
}

.luxe-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.luxe-contact-section .luxe-contact-form {
  padding: 22px 20px !important;
  margin: 0 !important;
  align-items: stretch !important;
}

.luxe-contact-section .luxe-contact-form .form-group {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .luxe-contact-section .luxe-contact-form > .col-12.col-md-6:nth-child(2) {
    margin-top: 16px !important;
  }
}

@media (min-width: 768px) {
  .luxe-contact-section .luxe-contact-form .col-md-6 .h-100 {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
  }

  .luxe-contact-section .luxe-contact-form .col-md-6 .h-100 .luxe-contact-textarea {
    flex: 1 1 auto !important;
    min-height: 168px !important;
  }
}

.luxe-contact-textarea {
  min-height: 148px !important;
  resize: vertical !important;
}

@media (min-width: 768px) {
  .luxe-contact-textarea {
    min-height: 168px !important;
  }
}

.luxe-contact-form__actions {
  display: flex !important;
  justify-content: stretch !important;
  margin-top: 4px !important;
  padding-top: 4px !important;
}

.luxe-contact-section .luxe-contact-submit {
  width: 100% !important;
  justify-content: center !important;
  min-height: 52px !important;
}

@media (min-width: 768px) {
  .luxe-contact-form__actions {
    justify-content: flex-end !important;
  }

  .luxe-contact-section .luxe-contact-submit {
    width: auto !important;
    min-width: 240px !important;
    justify-content: center !important;
  }
}

/* === FOOTER FINAL POLISH === */
.abnb-footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  padding-bottom: 28px !important;
}

.abnb-footer-column h4 {
  font-size: 15px !important;
  font-weight: 800 !important;
  margin-bottom: 12px !important;
}

.abnb-footer-column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.abnb-footer-column li {
  margin-bottom: 7px !important;
}

.abnb-footer-column a {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.abnb-footer-column a:hover {
  color: #fff !important;
}

.abnb-footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 0 !important;
}

.abnb-footer-copy {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.abnb-footer-copy a {
  color: rgba(255, 255, 255, 0.55) !important;
}

.abnb-footer-socials {
  display: flex !important;
  gap: 10px !important;
}

.abnb-footer-socials a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.abnb-footer-socials a:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

@media (max-width: 991px) {
  .abnb-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  .abnb-footer-brand {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 575px) {
  .abnb-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .abnb-footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }
}

/* === MOBILE TAB BAR POLISH === */
.premium-mobile-tab-bar {
  position: fixed !important;
  bottom: 0 !important;
  /* left: 0 !important; */
  right: 0 !important;
  z-index: 9990 !important;
  display: flex !important;
  background: #fff !important;
  border-top: 1px solid #e5e7eb !important;
  box-shadow: 0 -2px 12px rgba(15, 23, 42, 0.06) !important;
  padding: 6px 0 env(safe-area-inset-bottom, 4px) !important;
}

.premium-tab-item {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  padding: 6px 0 !important;
  text-decoration: none !important;
  color: #94a3b8 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
}

.premium-tab-item.active {
  color: #2563eb !important;
}

.premium-tab-item__icon {
  width: 24px !important;
  height: 24px !important;
}

.premium-tab-item__icon svg {
  width: 24px !important;
  height: 24px !important;
}

@media (min-width: 992px) {
  .premium-mobile-tab-bar {
    display: none !important;
  }
}

/* === HEADER FINAL POLISH === */
.luxe-header-main {
  padding: 10px 0 !important;
}

.abnb-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.abnb-logo img {
  height: 38px !important;
  width: auto !important;
}

.abnb-user-menu {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.abnb-user-menu__link {
  padding: 8px 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.abnb-user-menu__link:hover {
  background: #f1f5f9 !important;
  color: var(--v6-text) !important;
}

.abnb-user-menu__link.active {
  background: rgba(37, 99, 235, 0.06) !important;
  color: #2563eb !important;
}

.abnb-user-menu .premium-btn-primary {
  margin-left: 6px !important;
}

.luxe-header-top {
  padding: 6px 0 !important;
  background: #0f172a !important;
}

.luxe-header-top__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.luxe-header-top__inner a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.luxe-header-top__inner a:hover {
  color: #fff !important;
}

/* Top bar: белый текст и иконки (слева слоган, справа телефон) */
.luxe-header-top__tagline,
.luxe-header-top__tagline .luxe-header-top__tagline-icon {
  color: #fff !important;
}

.luxe-header-top__tagline-icon {
  margin-right: 6px !important;
  flex-shrink: 0 !important;
  vertical-align: -2px !important;
}

.luxe-header-top__phone,
.luxe-header-top__phone .luxe-header-top__phone-icon {
  color: #fff !important;
}

.luxe-header-top__phone-icon {
  margin-right: 5px !important;
  flex-shrink: 0 !important;
  vertical-align: -1px !important;
}

.luxe-header-top__phone:hover {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* === MOBILE BOTTOM CALL BLOCK === */
.abnb-mobile-callblock {
  position: fixed !important;
  bottom: 56px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9989 !important;
  display: flex !important;
  gap: 0 !important;
  background: #fff !important;
  border-top: 1px solid #e5e7eb !important;
  box-shadow: 0 -2px 8px rgba(15, 23, 42, 0.06) !important;
}

.abnb-callblock-btn {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.abnb-callblock-btn.call {
  background: #fff !important;
  color: #1e293b !important;
  border-right: 1px solid #e5e7eb !important;
}

.abnb-callblock-btn.wa {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #fff !important;
}

/* Glass sheen для телефонной CTA (идентичный подход что и sheen-slide) */
@keyframes phone-sheen {
  0%   { left: -100%; }
  22%  { left: 150%; }
  100% { left: 150%; }
}

/* Mobile header */
@media (max-width: 991px) {
  .abnb-header__inner .abnb-logo img {
    height: 60px !important;
    width: auto !important;
  }

  .luxe-header-phone {
    position: relative !important;
    flex-shrink: 0 !important;
    align-items: center !important;
    max-width: calc(100vw - 140px) !important;
    padding: 7px 10px 7px 8px !important;
    gap: 8px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(37, 99, 235, 0.18) !important;
    background: #fff !important;
    box-shadow:
      0 1px 3px rgba(15, 23, 42, 0.06),
      0 4px 16px rgba(37, 99, 235, 0.12) !important;
    overflow: hidden !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .luxe-header-phone::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(37,99,235,0) 0%,
      rgba(37,99,235,.06) 35%,
      rgba(37,99,235,.18) 50%,
      rgba(37,99,235,.06) 65%,
      rgba(37,99,235,0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 0;
    animation: phone-sheen 7s ease-in-out infinite;
  }

  .luxe-header-phone > * {
    position: relative;
    z-index: 1;
  }

  .luxe-header-phone:active {
    transform: scale(0.985) !important;
  }

  .luxe-header-phone__icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
    border-color: #e2e8f0 !important;
    box-shadow: none !important;
  }

  .luxe-header-phone__icon svg {
    width: 16px !important;
    height: 16px !important;
    color: #2563eb !important;
  }

  .luxe-header-phone__text {
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
  }

  .luxe-header-phone__text small {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    margin-top: 2px !important;
  }

  @media (prefers-reduced-motion: reduce) {
    .luxe-header-phone::before {
      animation: none;
      display: none;
    }
  }
}