/*
 * ============================================================
 *  PEACHTREE LODGE — LUXURY THEME MODERNIZATION
 *  Version: 2.0.0
 *  Layer: Override CSS (appended after global.css)
 *  Compatibility: QloApps / Webkul Hotel Reservation Theme
 *  Rules: Zero Smarty vars touched. Zero hooks removed.
 *         Only visual CSS overrides. All functionality intact.
 * ============================================================
 */

/* ── 1. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --lux-dark:      #1A2820;
  --lux-dark-md:   #243529;
  --lux-dark-lt:   #2F4538;
  --lux-gold:      #C4973A;
  --lux-gold-lt:   #D4AA5A;
  --lux-gold-pale: #F5EDD8;
  --lux-ivory:     #F9F6F1;
  --lux-sand:      #EDE7DC;
  --lux-stone:     #D0C8BB;
  --lux-ink:       #1C1916;
  --lux-ink-md:    #3A3530;
  --lux-ink-lt:    #6B6560;
  --lux-white:     #FFFFFF;
  --lux-serif:     'Cormorant Garamond', 'Georgia', serif;
  --lux-sans:      'Jost', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow-sm:     0 2px 8px rgba(26,40,32,0.08);
  --shadow-md:     0 8px 24px rgba(26,40,32,0.12);
  --shadow-lg:     0 20px 48px rgba(26,40,32,0.18);
  --trans-fast:    all 0.2s ease;
  --trans:         all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans-slow:    all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ── 2. BASE & TYPOGRAPHY ────────────────────────────────────── */
body {
  font-family: var(--lux-sans) !important;
  color: var(--lux-ink) !important;
  background-color: var(--lux-ivory) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lux-serif) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  color: var(--lux-ink) !important;
  line-height: 1.25 !important;
}
h1 { font-size: clamp(32px, 4vw, 56px) !important; }
h2 { font-size: clamp(26px, 3vw, 42px) !important; }
h3 { font-size: clamp(20px, 2.2vw, 28px) !important; }
h4 { font-size: 20px !important; }
h5 { font-size: 17px !important; font-family: var(--lux-sans) !important; letter-spacing: 0.05em !important; }

p { line-height: 1.8 !important; color: var(--lux-ink-md) !important; }
a { transition: var(--trans-fast) !important; }
.columns-container { background-color: var(--lux-ivory) !important; }


/* ── 3. NAVIGATION ────────────────────────────────────────────
   #nav-main: The dark bar with links/cart/account (from displayNav hook)
   .header-top: Logo row (from Webkul header structure)
   Strategy: make it sticky, transparent on hero page, solid elsewhere
─────────────────────────────────────────────────────────────── */

/* Reset old header styles */
header {
  background: transparent !important;
  position: relative !important;
  z-index: 1000 !important;
}

/* Dark banner strip — hide it (it's just the displayBanner hook container) */
header .banner {
  background: transparent !important;
}

/* Main nav bar */
header #nav-main {
  background-color: var(--lux-dark) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  transition: var(--trans) !important;
  border-bottom: 1px solid rgba(196, 151, 58, 0.2) !important;
}

/* Nav is transparent over the hero on the index page */
#index header #nav-main {
  position: fixed !important;
  width: 100% !important;
  background-color: rgba(26, 40, 32, 0) !important;
  border-bottom: 1px solid transparent !important;
}

/* JS-added class for scroll state */
#index header #nav-main.nav-scrolled {
  background-color: rgba(26, 40, 32, 0.97) !important;
  border-bottom-color: rgba(196, 151, 58, 0.3) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Nav links */
header #nav-main nav > div {
  padding: 14px 0 !important;
}
header .header-top-link {
  font-family: var(--lux-sans) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.85) !important;
  padding: 6px 14px !important;
  border-bottom: none !important;
  position: relative !important;
  transition: var(--trans-fast) !important;
}
header .header-top-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 14px !important;
  right: 14px !important;
  height: 1px !important;
  background: var(--lux-gold) !important;
  transform: scaleX(0) !important;
  transition: transform 0.25s ease !important;
}
header .header-top-link:hover {
  color: var(--lux-gold-lt) !important;
  border-bottom: none !important;
}
header .header-top-link:hover::after {
  transform: scaleX(1) !important;
}

/* Logo row */
header .header-top {
  background-color: var(--lux-dark) !important;
  border-bottom: 1px solid rgba(196, 151, 58, 0.15) !important;
  padding: 4px 0 !important;
}
/* On index page header-top sits inside hero, no separate bg needed */
#index header .header-top {
  background-color: transparent !important;
  border-bottom: none !important;
}
header #header_logo img {
  max-height: 56px !important;
  height: auto !important;
  filter: brightness(0) invert(1) !important;
  transition: var(--trans-fast) !important;
}
header #header_logo img:hover { opacity: 0.85 !important; }

/* Header top menu (cart, account, languages, etc.) */
header .header-top-menu {
  gap: 4px !important;
}
header .header-top-item {
  margin-left: 8px !important;
}

/* Our Properties link */
.our_properties_link {
  font-family: var(--lux-sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--lux-gold-lt) !important;
  padding: 7px 16px !important;
  border: 1px solid var(--lux-gold) !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--trans-fast) !important;
}
.our_properties_link:hover {
  background: var(--lux-gold) !important;
  color: var(--lux-dark) !important;
  text-decoration: none !important;
}

/* Breadcrumb */
.breadcrumb, #index-breadcrumb {
  background: transparent !important;
  border-bottom: 1px solid var(--lux-sand) !important;
  padding: 14px 0 !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
  font-family: var(--lux-sans) !important;
}
.breadcrumb li, .breadcrumb li a {
  color: var(--lux-ink-lt) !important;
}
.breadcrumb li.last { color: var(--lux-gold) !important; }


/* ── 4. HERO / SEARCH PANEL ──────────────────────────────────── */
#index header {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}
#index .header-container {
  height: 100% !important;
}

/* The displaySearchHotelPanel area */
.search_hotel_panel,
.hotel-search-form-block,
.hotel_search_block,
[class*="search_hotel"],
[class*="hotel_search"] {
  background: rgba(26, 40, 32, 0.72) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(196, 151, 58, 0.3) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px 36px !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Override the blue search accents on the hotel panel */
.search_hotel_panel label,
.hotel_search_block label,
[class*="hotel_search"] label {
  font-family: var(--lux-sans) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: rgba(196, 151, 58, 0.9) !important;
  margin-bottom: 8px !important;
}

/* Search button in panel */
.search_hotel_panel .btn,
.hotel_search_block .btn,
[class*="hotel_search"] button[type="submit"],
[class*="hotel_search"] .search_btn {
  background: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
  color: var(--lux-dark) !important;
  font-family: var(--lux-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--trans-fast) !important;
}
.search_hotel_panel .btn:hover,
.hotel_search_block .btn:hover,
[class*="hotel_search"] button[type="submit"]:hover {
  background: var(--lux-gold-lt) !important;
  border-color: var(--lux-gold-lt) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(196,151,58,0.35) !important;
}


/* ── 5. BUTTONS ─────────────────────────────────────────────── */

/* Global button reset */
.btn, button, input[type="submit"] {
  font-family: var(--lux-sans) !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--trans-fast) !important;
  letter-spacing: 0.04em !important;
}

/* Primary CTA — Book Now */
.btn-default.button.exclusive,
button.exclusive,
.book_now_submit,
.exclusive:not(.cart_block):not(.cart_navigation) {
  background: var(--lux-dark) !important;
  background-image: none !important;
  border: 2px solid var(--lux-dark) !important;
  color: var(--lux-white) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}
.book_now_submit::before,
.exclusive:not(.cart_block):not(.cart_navigation)::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: var(--lux-gold) !important;
  transform: translateX(-100%) !important;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  z-index: 0 !important;
}
.book_now_submit:hover::before,
.exclusive:not(.cart_block):not(.cart_navigation):hover::before { transform: translateX(0) !important; }
.book_now_submit span,
.exclusive:not(.cart_block):not(.cart_navigation) span {
  position: relative !important;
  z-index: 1 !important;
}
.book_now_submit:hover,
.exclusive:not(.cart_block):not(.cart_navigation):hover {
  color: var(--lux-dark) !important;
  border-color: var(--lux-gold) !important;
}

/* Secondary buttons */
.btn-default {
  background: transparent !important;
  background-image: none !important;
  border: 1px solid var(--lux-stone) !important;
  color: var(--lux-ink-md) !important;
  font-size: 13px !important;
  padding: 9px 18px !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.btn-default:hover, .btn-default:focus {
  background: var(--lux-sand) !important;
  border-color: var(--lux-ink-md) !important;
  color: var(--lux-ink) !important;
}
.btn-primary {
  background: var(--lux-gold) !important;
  background-image: none !important;
  border-color: var(--lux-gold) !important;
  color: var(--lux-dark) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--lux-gold-lt) !important;
  border-color: var(--lux-gold-lt) !important;
}


/* ── 6. FORMS ───────────────────────────────────────────────── */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
select,
textarea {
  font-family: var(--lux-sans) !important;
  border: 1px solid var(--lux-stone) !important;
  border-radius: var(--radius-sm) !important;
  background-color: var(--lux-white) !important;
  color: var(--lux-ink) !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  transition: var(--trans-fast) !important;
  box-shadow: none !important;
}
.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--lux-gold) !important;
  box-shadow: 0 0 0 3px rgba(196, 151, 58, 0.12) !important;
  outline: none !important;
}
.form-control[readonly],
.form-control.input-date {
  background-color: var(--lux-ivory) !important;
  cursor: pointer !important;
}
.input-hotel,
.form-control .input-hotel {
  background-image: url("../img/icon/icon-hotel.svg") !important;
  background-repeat: no-repeat !important;
  background-position: 12px 50% !important;
  padding-left: 40px !important;
}
label.control-label {
  font-family: var(--lux-sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--lux-ink-lt) !important;
  margin-bottom: 6px !important;
}


/* ── 7. BOOKING FORM CARD (product detail page) ──────────────── */
.booking-form.card,
.booking-form {
  background: var(--lux-white) !important;
  border: 1px solid var(--lux-sand) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px !important;
  box-shadow: var(--shadow-md) !important;
}

/* Date picker button */
#room_date_range,
.form-control.input-date {
  background-color: var(--lux-ivory) !important;
  border: 1px solid var(--lux-stone) !important;
  border-radius: var(--radius-sm) !important;
  padding: 13px 16px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  color: var(--lux-ink) !important;
  display: flex !important;
  align-items: center !important;
}
#room_date_range span {
  color: var(--lux-ink-lt) !important;
  font-size: 14px !important;
}

/* Price display in booking form */
.total_price_block p,
.extra_demands_price_block {
  font-family: var(--lux-serif) !important;
  font-size: 22px !important;
  color: var(--lux-dark) !important;
}
.room_type_old_price {
  color: var(--lux-ink-lt) !important;
  text-decoration: line-through !important;
  font-size: 16px !important;
  margin-right: 8px !important;
}
.sold_out_alert {
  background: #FFF3F3 !important;
  border: 1px solid #FFB3B3 !important;
  color: #C0392B !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  text-align: center !important;
}
.num_quantity_alert {
  color: #E67E22 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Booking form hotel location */
.htl_location_block p {
  font-size: 14px !important;
  color: var(--lux-ink-lt) !important;
  font-style: italic !important;
}
.booking-form hr.separator-hr-mg-10 {
  border-color: var(--lux-sand) !important;
  margin: 16px 0 !important;
}

/* Quantity controls */
.qty_container {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}
.qty_container .qty_count,
.qty_container .qty_count span {
  font-size: 18px !important;
  font-weight: 500 !important;
  min-width: 32px !important;
  text-align: center !important;
  color: var(--lux-ink) !important;
}
.qty_container .qty_direction .btn {
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border-color: var(--lux-stone) !important;
}


/* ── 8. ROOM CARDS (product list) ────────────────────────────── */

/* Container resets */
ul.product_list { gap: 0 !important; }
ul.product_list.grid > li {
  margin-bottom: 28px !important;
}

.product-container {
  background: var(--lux-white) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  border: none !important;
  box-shadow: var(--shadow-sm) !important;
  transition: var(--trans) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.product-container:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px) !important;
}

/* Room image area */
.product-image-container {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}
.product-image-container img.replace-2x {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  transition: transform 0.6s ease !important;
}
.product-container:hover .product-image-container img.replace-2x {
  transform: scale(1.06) !important;
}

/* Price badge on image */
.product-image-container .content_price {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  background: linear-gradient(to top, rgba(26,40,32,0.85) 0%, transparent 100%) !important;
  padding: 32px 16px 16px !important;
  text-align: left !important;
}
ul.product_list.grid > li .product-container .product-image-container .content_price {
  background: linear-gradient(to top, rgba(26,40,32,0.85) 0%, transparent 100%) !important;
}
.content_price .price.product-price {
  font-family: var(--lux-serif) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: var(--lux-white) !important;
  text-shadow: none !important;
}
.content_price .old-price.product-price {
  color: rgba(255,255,255,0.6) !important;
  text-decoration: line-through !important;
  font-size: 15px !important;
}
.content_price .price-percent-reduction {
  background: var(--lux-gold) !important;
  color: var(--lux-dark) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  border-radius: 3px !important;
}

/* Room card body */
.product-container .left-block {
  border-radius: 0 !important;
}
.product-container .right-block {
  padding: 20px 20px 16px !important;
  background: var(--lux-white) !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.product-container h5 {
  font-family: var(--lux-serif) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: var(--lux-ink) !important;
  margin: 0 0 8px !important;
  letter-spacing: 0.02em !important;
}
ul.product_list.grid > li .product-container h5 {
  font-family: var(--lux-serif) !important;
  font-size: 20px !important;
  color: var(--lux-ink) !important;
}
.product-container .product-desc {
  font-size: 13px !important;
  color: var(--lux-ink-lt) !important;
  line-height: 1.65 !important;
  margin-bottom: 16px !important;
  flex: 1 !important;
}

/* Book Now on room card */
.product-container .button-container {
  margin-top: auto !important;
}
.product-container .button-container .ajax_add_to_cart_button,
.product-container .button-container .lnk_view,
.product-container .button-container span.button {
  background: var(--lux-dark) !important;
  background-image: none !important;
  border: 2px solid var(--lux-dark) !important;
  color: var(--lux-white) !important;
  font-family: var(--lux-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 11px 20px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: var(--trans-fast) !important;
}
.product-container .button-container .ajax_add_to_cart_button:hover,
.product-container .button-container .lnk_view:hover,
.product-container .button-container span.button:hover {
  background: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
  color: var(--lux-dark) !important;
}

/* Room type availability flag */
.product-container .availability span {
  font-size: 12px !important;
  font-weight: 500 !important;
}
.product-container .availability .available {
  color: #2D7A4F !important;
}
.product-container .availability .last-quantities {
  color: #E67E22 !important;
}
.product-container .availability .product-unavailable {
  color: #C0392B !important;
}

/* Quick view styling */
.product-image-container .quick-view {
  background: rgba(26,40,32,0.85) !important;
  color: var(--lux-white) !important;
  font-family: var(--lux-sans) !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  border: none !important;
}
.product-image-container .quick-view:hover {
  background: var(--lux-gold) !important;
  color: var(--lux-dark) !important;
}


/* ── 9. PRODUCT DETAIL PAGE ──────────────────────────────────── */

.product_wrapper .primary_block {
  padding-top: 32px !important;
}
.room_type_img_containter.card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.hotel_name_block h1 {
  font-family: var(--lux-serif) !important;
  font-size: clamp(28px, 3.5vw, 46px) !important;
  font-weight: 400 !important;
  color: var(--lux-ink) !important;
}
.hotel_name_block .hotel_name { color: var(--lux-ink) !important; }

/* Star rating */
#hotel_rating { display: flex !important; gap: 4px !important; margin-top: 10px !important; }
#hotel_rating .icon-star {
  color: var(--lux-gold) !important;
  font-size: 16px !important;
}

/* Image gallery */
#image-block {
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
}
#image-block img {
  border-radius: var(--radius-lg) !important;
}
#thumbs_list_frame li img {
  border-radius: var(--radius-sm) !important;
  border: 2px solid transparent !important;
  transition: var(--trans-fast) !important;
}
#thumbs_list_frame li.selected img,
#thumbs_list_frame li img:hover {
  border-color: var(--lux-gold) !important;
}

/* Room description */
.product-desc,
#short_description_content,
.short-description-wrapper {
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: var(--lux-ink-md) !important;
}

/* Amenities/features */
.product_features,
.room_features_block {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 16px 0 !important;
}
.product_features dt,
.room_feature_item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  background: var(--lux-ivory) !important;
  border: 1px solid var(--lux-sand) !important;
  color: var(--lux-ink-md) !important;
  padding: 6px 12px !important;
  border-radius: 100px !important;
}


/* ── 10. EXTRA SERVICES PANEL ────────────────────────────────── */
#rooms_extra_services {
  border: 1px solid var(--lux-sand) !important;
  border-radius: var(--radius) !important;
  margin-top: 24px !important;
}
#rooms_extra_services .nav-tabs {
  border-bottom: 1px solid var(--lux-sand) !important;
  background: var(--lux-ivory) !important;
  border-radius: var(--radius) var(--radius) 0 0 !important;
}
#rooms_extra_services .nav-tabs > li > a {
  font-family: var(--lux-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--lux-ink-lt) !important;
  border-radius: 0 !important;
  border: none !important;
}
#rooms_extra_services .nav-tabs > li.active > a {
  color: var(--lux-dark) !important;
}
#rooms_extra_services .nav-tabs > li.active:after {
  background: var(--lux-gold) !important;
  height: 3px !important;
}


/* ── 11. FOOTER ─────────────────────────────────────────────── */
.footer-container {
  background-color: var(--lux-dark) !important;
  background-image: none !important;
  color: rgba(255,255,255,0.65) !important;
  margin-top: 0 !important;
}
.footer-container #footer {
  padding: 64px 0 32px !important;
}
.footer-container #footer .footer-block h4 {
  font-family: var(--lux-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--lux-gold) !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(196,151,58,0.25) !important;
  margin-bottom: 20px !important;
}
.footer-container #footer .footer-block h4 a {
  color: var(--lux-gold) !important;
}
.footer-container #footer a {
  color: rgba(255,255,255,0.6) !important;
  font-size: 13px !important;
  transition: var(--trans-fast) !important;
}
.footer-container #footer a:hover {
  color: var(--lux-gold-lt) !important;
  text-decoration: none !important;
}
.footer-container #footer ul li {
  padding: 5px 0 !important;
  border-bottom: none !important;
}
.footer-container #footer #block_contact_infos > div ul li {
  color: rgba(255,255,255,0.6) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}
.footer-container #footer #block_contact_infos > div ul li > span,
.footer-container #footer #block_contact_infos > div ul li > span a {
  color: rgba(255,255,255,0.85) !important;
}

/* Social icons in footer */
.footer-container #footer #social_block ul li a {
  background-color: rgba(255,255,255,0.08) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--trans-fast) !important;
}
.footer-container #footer #social_block ul li a:hover {
  background-color: var(--lux-gold) !important;
}
.footer-container #footer #social_block ul li a:before {
  color: var(--lux-white) !important;
}

/* Footer bottom */
.footer-container #footer .bottom-footer {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  padding-top: 24px !important;
  margin-top: 32px !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.35) !important;
}


/* ── 12. PAGE-SPECIFIC STYLES ─────────────────────────────────── */

/* Authentication page */
#authentication .page-heading {
  font-family: var(--lux-serif) !important;
  font-size: 36px !important;
  border-bottom: 1px solid var(--lux-sand) !important;
  padding-bottom: 16px !important;
  margin-bottom: 32px !important;
}
.page-subheading {
  font-family: var(--lux-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--lux-ink-lt) !important;
}

/* Order / checkout steps */
.order-steps #step_end .done {
  background-color: var(--lux-gold) !important;
}
#order_step li.step_done {
  border-color: var(--lux-gold) !important;
  color: var(--lux-gold) !important;
}
#order_step li.step_current {
  border-color: var(--lux-dark) !important;
  background-color: var(--lux-dark) !important;
  color: var(--lux-white) !important;
}

/* My account */
#my-account .myaccount-link-list a {
  border: 1px solid var(--lux-sand) !important;
  border-radius: var(--radius) !important;
  transition: var(--trans-fast) !important;
  padding: 20px !important;
}
#my-account .myaccount-link-list a:hover {
  border-color: var(--lux-gold) !important;
  box-shadow: 0 4px 16px rgba(196,151,58,0.15) !important;
  transform: translateY(-2px) !important;
}
#my-account .myaccount-link-list a i {
  color: var(--lux-gold) !important;
}

/* Alerts */
.alert-success {
  background-color: #EFF7F2 !important;
  border-color: #A8D5B8 !important;
  color: #1E5C35 !important;
}
.alert-danger, .alert-error {
  background-color: #FDF2F2 !important;
  border-color: #F5AAAA !important;
  color: #7B2020 !important;
}
.alert-info {
  background-color: var(--lux-gold-pale) !important;
  border-color: rgba(196,151,58,0.4) !important;
  color: var(--lux-dark) !important;
}

/* Panels / cards used by QloApps */
.panel, .card {
  border: 1px solid var(--lux-sand) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm) !important;
}
.panel-heading {
  background: var(--lux-ivory) !important;
  border-bottom: 1px solid var(--lux-sand) !important;
  font-family: var(--lux-sans) !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}

/* Tabs */
.nav-tabs > li > a {
  font-family: var(--lux-sans) !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  color: var(--lux-ink-lt) !important;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: var(--lux-dark) !important;
  border-bottom-color: transparent !important;
  border-top: 2px solid var(--lux-gold) !important;
}

/* Pagination */
.pagination {
  display: flex !important;
  gap: 4px !important;
  justify-content: center !important;
  margin: 32px 0 !important;
}
.pagination > li > a,
.pagination > li > span {
  font-family: var(--lux-sans) !important;
  font-size: 13px !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--lux-sand) !important;
  color: var(--lux-ink-md) !important;
  padding: 8px 14px !important;
  transition: var(--trans-fast) !important;
}
.pagination > li.active > a,
.pagination > li.active > span {
  background: var(--lux-dark) !important;
  border-color: var(--lux-dark) !important;
  color: var(--lux-white) !important;
}
.pagination > li > a:hover {
  background: var(--lux-sand) !important;
  border-color: var(--lux-ink-md) !important;
  color: var(--lux-ink) !important;
}


/* ── 13. CATEGORY / PROPERTY LIST PAGE ──────────────────────── */
.our-properties-page .hotel-list-item,
.hotel_list_item,
[class*="hotel_item"] {
  background: var(--lux-white) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-sm) !important;
  transition: var(--trans) !important;
  margin-bottom: 28px !important;
}
.our-properties-page .hotel-list-item:hover,
[class*="hotel_item"]:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-4px) !important;
}


/* ── 14. LOADING STATES ─────────────────────────────────────── */
#booking_action_loader {
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-top-color: var(--lux-white) !important;
  border-radius: 50% !important;
  animation: lux-spin 0.7s linear infinite !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
}


/* ── 15. ANIMATIONS ─────────────────────────────────────────── */
@keyframes lux-spin {
  to { transform: rotate(360deg); }
}

@keyframes lux-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Animate key elements on page load */
header .header-top,
.booking-form,
.product-container {
  animation: lux-fadeIn 0.5s ease both;
}


/* ── 16. SCROLL REVEAL — target class added by JS ────────────── */
.lux-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.lux-reveal.lux-visible {
  opacity: 1;
  transform: translateY(0);
}
.lux-reveal-delay-1 { transition-delay: 0.1s; }
.lux-reveal-delay-2 { transition-delay: 0.2s; }
.lux-reveal-delay-3 { transition-delay: 0.3s; }


/* ── 17. UTILITY OVERRIDES ──────────────────────────────────── */
.margin-btm-50 { margin-bottom: 40px !important; }

/* Hide outdated IE conditional divs cleanly */
.ie8, .lt-ie9 { display: none !important; }

/* Fancybox improvements */
.fancybox-skin {
  border-radius: var(--radius-lg) !important;
  background: var(--lux-white) !important;
}


/* ── 18. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  #index header #nav-main {
    position: relative !important;
    background-color: var(--lux-dark) !important;
  }
  .booking-form.card, .booking-form {
    padding: 20px !important;
  }
  .footer-container #footer { padding: 40px 0 24px !important; }
}

@media (max-width: 767px) {
  header .header-top { padding: 8px 0 !important; }
  header #header_logo img { max-height: 44px !important; }
  .product-image-container img.replace-2x { height: 200px !important; }
  ul.product_list.grid > li { padding-left: 10px !important; padding-right: 10px !important; }
  .product-container:hover { transform: none !important; }
  .footer-container #footer .footer-block { text-align: center !important; }
}


/* ── 19. HIGH SPECIFICITY FIXES (force overrides) ────────────── */
body #nav-main { background-color: var(--lux-dark) !important; }
body .btn.exclusive span { color: inherit !important; }
body .product-container .product-image-container .content_price span.price { color: var(--lux-white) !important; }
