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

:root {
  --abnb-red: #E51D53;
  --abnb-black: #222222;
  --abnb-gray-dark: #717171;
  --abnb-gray-light: #DDDDDD;
  --abnb-bg: #FFFFFF;
  --abnb-bg-secondary: #F7F7F7;

  /* Premium Unified Typography */
  --abnb-font: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;

  --abnb-radius-sm: 8px;
  --abnb-radius-md: 12px;
  --abnb-radius-lg: 16px;
  --abnb-radius-xl: 24px;
  --abnb-radius-pill: 9999px;

  --abnb-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  --abnb-shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
  --abnb-shadow-lg: 0 14px 28px rgba(0, 0, 0, 0.12), 0 10px 10px rgba(0, 0, 0, 0.05);
}

/* 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;
}

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

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

.abnb-container {
  max-width: 1440px;
  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 24px;
  border-radius: var(--abnb-radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.abnb-btn-secondary {
  background: var(--abnb-black);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--abnb-radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s;
}

.abnb-btn-outline {
  background: transparent;
  color: var(--abnb-black);
  border: 1px solid var(--abnb-black);
  padding: 13px 23px;
  border-radius: var(--abnb-radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* ========================================================================= */
/* 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: 65px;
  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;
}

@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: #E51D53;
  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(229, 29, 83, 0.3);
  animation: premiumPulse 2s infinite;
}

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

@keyframes premiumPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 29, 83, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(229, 29, 83, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(229, 29, 83, 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: #E51D53;
}

.premium-tab-item.active svg {
  color: #E51D53;
  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: #E51D53;
  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: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

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

.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: #E51D53;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.premium-welcome__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
}

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

.premium-text-accent {
  color: #E51D53;
}

.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: #E51D53;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  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-primary:hover {
  background: #d4184a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 29, 83, 0.3);
  color: #ffffff;
}

.premium-btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 16px;
  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: #1a1a1a;
  background: #1a1a1a;
  color: #ffffff;
}

/* ========================================================================= */
/* 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: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none !important;
  color: #222222;
  height: 100%;
}

.premium-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  color: #222222;
  text-decoration: none;
}

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

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

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

.premium-modern-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #E51D53;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(229, 29, 83, 0.3);
  z-index: 10;
}

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

.premium-modern-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.premium-modern-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: inherit;
}

.premium-modern-card__rating {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff8e5;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
}

.premium-modern-card__rating svg {
  fill: #ffb500;
  width: 14px;
  height: 14px;
}

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

.premium-modern-card__tag {
  background: #f4f5f7;
  color: #4a4a4a;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.premium-modern-card__desc {
  font-size: 14px;
  color: #717171;
  line-height: 1.5;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.premium-modern-card__price-wrapper {
  display: flex;
  flex-direction: column;
}

.premium-modern-card__price-label {
  font-size: 12px;
  color: #717171;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.premium-modern-card__price-amount {
  font-size: 22px;
  font-weight: 800;
  color: #E51D53;
  line-height: 1;
}

.premium-modern-card__action {
  background: #f4f5f7;
  color: #1a1a1a;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  font-size: 14px;
}

.premium-modern-card:hover .premium-modern-card__action {
  background: #E51D53;
  color: #ffffff;
}

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

.premium-booking-widget {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 32px;
  max-width: 1000px;
  margin: -60px auto 60px auto;
  /* Pulls it up over the banner */
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.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: #E51D53;
  box-shadow: 0 0 0 4px rgba(229, 29, 83, 0.1);
}

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

.premium-booking-widget__btn {
  background: #E51D53;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
  /* Match input height on desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
}

.premium-booking-widget__btn:hover {
  background: #d4184a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 29, 83, 0.3);
}

.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: #E51D53;
  color: #fff;
}

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

.abnb-call-box {
  background: #fff;
  border-radius: var(--abnb-radius-lg);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--abnb-shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.abnb-call-icon {
  width: 64px;
  height: 64px;
  background: var(--abnb-bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 24px;
  color: var(--abnb-red);
}

.abnb-call-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.abnb-call-text {
  color: var(--abnb-gray-dark);
}

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

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

.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-lg);
  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;
  margin-top: 64px;
}

.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: 40px 0 32px 0;
}

.premium-modern-detail-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.premium-modern-detail-meta {
  font-size: 16px;
  color: #1a1a1a;
  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: #717171;
  font-weight: 500;
}

/* Premium Booking Sticky Card */
.premium-booking-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.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: #1a1a1a;
}

.premium-booking-card__price-label {
  font-size: 16px;
  color: #717171;
  font-weight: 500;
}

.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: #4a4a4a;
  margin-bottom: 24px;
}

.premium-btn-primary {
  background: #E51D53;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.premium-btn-primary:hover {
  background: #d41749;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 29, 83, 0.3);
}

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

.premium-btn-secondary {
  background: #f4f5f7;
  color: #1a1a1a;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.premium-btn-secondary:hover {
  background: #e4e5e7;
  color: #1a1a1a;
}

.premium-booking-card__hint {
  font-size: 14px;
  color: #717171;
  text-align: center;
  margin-top: 16px;
}

/* Detail Page Form Upgrades */
.premium-modern-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-modern-input {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fdfdfd;
}

.premium-modern-input:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 1px #1a1a1a;
  background: #ffffff;
}

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

.premium-modern-quotes p {
  font-size: 18px;
  font-style: italic;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Typography Headings */
.premium-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}



@media (min-width: 770px) {}