/*
Theme Name: Location Vendée
Theme URI: https://locationvendee.com
Author: Location Vendée
Author URI: https://locationvendee.com
Description: Thème WordPress moderne pour la location saisonnière d'une maison en Vendée. Compatible Elementor, intégration WP Booking Pro, optimisé SEO, RGPD compliant.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: location-vendee
Tags: holiday-rental, vacation, one-page, custom-background, custom-logo, elementor-ready
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --lv-dark: #0F1923;
  --lv-dark-light: #1a2d3d;
  --lv-gold: #C1A57B;
  --lv-gold-light: #D4BA94;
  --lv-cream: #FAFAF7;
  --lv-sand: #F0EDE8;
  --lv-text: #1A1A1A;
  --lv-text-light: #555;
  --lv-text-muted: #999;
  --lv-white: #fff;
  --lv-shadow-sm: 0 4px 20px rgba(0,0,0,0.03);
  --lv-shadow-md: 0 10px 40px rgba(0,0,0,0.08);
  --lv-shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --lv-radius: 8px;
  --lv-radius-lg: 16px;
  --lv-radius-xl: 20px;
  --lv-transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  --lv-font-heading: 'Playfair Display', Georgia, serif;
  --lv-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--lv-font-body); font-size: 16px; line-height: 1.7; color: var(--lv-text); background: var(--lv-cream); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--lv-transition); }
ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--lv-font-heading); font-weight: 600; line-height: 1.2; color: var(--lv-dark); }
h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(22px, 3vw, 28px); }

.section-label {
  font-family: var(--lv-font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--lv-gold); margin-bottom: 12px;
}
.section-title { margin-bottom: 20px; }
.section-title em { font-style: italic; }
.gold-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--lv-gold), var(--lv-gold-light)); border-radius: 2px; }

.lv-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.lv-section { padding: 100px 24px; }
.lv-section--dark { background: var(--lv-dark); color: var(--lv-white); }
.lv-section--sand { background: var(--lv-sand); }
.lv-section--cream { background: var(--lv-cream); }
.text-center { text-align: center; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: linear-gradient(135deg, var(--lv-dark), var(--lv-dark-light));
  color: var(--lv-white); border: none; border-radius: var(--lv-radius); cursor: pointer;
  font-family: var(--lv-font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; transition: var(--lv-transition);
  box-shadow: 0 4px 20px rgba(15,25,35,0.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(15,25,35,0.25); color: var(--lv-white); }
.btn-primary--gold { background: linear-gradient(135deg, var(--lv-gold), var(--lv-gold-light)); color: var(--lv-dark); }
.btn-primary--gold:hover { color: var(--lv-dark); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--lv-dark);
  border: 2px solid var(--lv-gold); border-radius: var(--lv-radius); cursor: pointer;
  font-family: var(--lv-font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; transition: var(--lv-transition);
}
.btn-secondary:hover { background: var(--lv-gold); color: var(--lv-white); }

/* ============================================
   NAVIGATION
   ============================================ */
.lv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--lv-transition);
}
.lv-nav.scrolled {
  padding: 12px 0; background: rgba(250,250,247,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.lv-nav__inner { display: flex; align-items: center; justify-content: space-between; }

.lv-nav__logo { display: flex; align-items: center; gap: 12px; }
.lv-nav__logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--lv-dark), var(--lv-dark-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--lv-gold); font-family: var(--lv-font-heading); font-size: 20px; font-weight: 700;
}
.lv-nav__logo-text { font-family: var(--lv-font-heading); font-size: 17px; font-weight: 600; color: #fff; transition: color 0.3s; }
.scrolled .lv-nav__logo-text { color: var(--lv-dark); }
.lv-nav__logo-sub { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color 0.3s; }
.scrolled .lv-nav__logo-sub { color: var(--lv-gold); }

.lv-nav__links { display: flex; align-items: center; gap: 28px; }
.lv-nav__link { font-size: 13px; font-weight: 500; color: #fff; letter-spacing: 0.02em; transition: color 0.3s; }
.scrolled .lv-nav__link { color: var(--lv-text); }
.lv-nav__link:hover { color: var(--lv-gold); }
.lv-nav__cta { padding: 10px 24px; font-size: 12px; }

/* Mobile menu toggle */
.lv-nav__toggle { display: none; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; padding: 4px; }
.scrolled .lv-nav__toggle { color: var(--lv-dark); }

@media (max-width: 900px) {
  .lv-nav__toggle { display: block; }
  .lv-nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--lv-cream); padding: 24px; gap: 16px; box-shadow: var(--lv-shadow-md); }
  .lv-nav__links.open { display: flex; }
  .lv-nav__links .lv-nav__link { color: var(--lv-dark); font-size: 15px; }
}

/* ============================================
   HERO
   ============================================ */
.lv-hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.lv-hero__slide {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.08);
  transition: all 1.2s cubic-bezier(0.16,1,0.3,1);
}
.lv-hero__slide.active { opacity: 1; transform: scale(1); }
.lv-hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.lv-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,25,35,0.3) 0%, rgba(15,25,35,0.6) 60%, rgba(15,25,35,0.85) 100%);
}
.lv-hero__content { position: absolute; bottom: 12%; left: 0; right: 0; padding: 0 24px; }
.lv-hero__content h1 { color: #fff; margin-bottom: 20px; max-width: 700px; }
.lv-hero__content h1 em { color: var(--lv-gold); font-style: italic; }
.lv-hero__subtitle { font-size: 13px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lv-gold); margin-bottom: 16px; }
.lv-hero__desc { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 520px; line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
.lv-hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.lv-hero__dots { display: flex; gap: 8px; margin-top: 48px; }
.lv-hero__dot {
  width: 8px; height: 8px; border-radius: 4px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.3); transition: var(--lv-transition);
}
.lv-hero__dot.active { width: 32px; background: var(--lv-gold); }

/* ============================================
   STATS BAR
   ============================================ */
.lv-stats { background: var(--lv-dark); }
.lv-stats__inner { display: flex; flex-wrap: wrap; }
.lv-stats__item { flex: 1 1 140px; padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.lv-stats__item:last-child { border-right: none; }
.lv-stats__num { font-family: var(--lv-font-heading); font-size: 28px; font-weight: 600; color: var(--lv-gold); margin-bottom: 4px; }
.lv-stats__label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.lv-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lv-about__img-wrap { position: relative; }
.lv-about__img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--lv-radius-lg); box-shadow: var(--lv-shadow-lg); }
.lv-about__badge {
  position: absolute; bottom: -20px; right: -20px; padding: 20px 28px;
  background: var(--lv-dark); border-radius: 12px; color: var(--lv-gold);
  font-family: var(--lv-font-heading); font-size: 18px; font-weight: 600;
  box-shadow: 0 10px 40px rgba(15,25,35,0.3);
}
.lv-about__text p { font-size: 15px; line-height: 1.8; color: var(--lv-text-light); margin-bottom: 20px; }

@media (max-width: 768px) {
  .lv-about__grid { grid-template-columns: 1fr; gap: 32px; }
  .lv-about__img { height: 300px; }
  .lv-about__badge { bottom: -12px; right: 12px; padding: 12px 18px; font-size: 14px; }
}

/* ============================================
   PROPERTY CARD
   ============================================ */
.lv-property { background: var(--lv-sand); }
.lv-property__card {
  background: #fff; border-radius: var(--lv-radius-xl); overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.08);
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.lv-property__images { position: relative; }
.lv-property__images > img { width: 100%; height: 520px; object-fit: cover; }
.lv-property__badge-top {
  position: absolute; top: 20px; left: 20px;
  background: linear-gradient(135deg, var(--lv-gold), var(--lv-gold-light));
  padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 700;
  color: var(--lv-dark); letter-spacing: 0.05em; text-transform: uppercase;
}
.lv-property__thumbs {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 40px 24px 20px; display: flex; gap: 6px;
}
.lv-property__thumb { width: 72px; height: 52px; object-fit: cover; border-radius: 8px; border: 2px solid rgba(255,255,255,0.3); cursor: pointer; }
.lv-property__thumb-more {
  width: 72px; height: 52px; border-radius: 8px; background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff; font-weight: 600; cursor: pointer;
}
.lv-property__details { padding: 36px 32px; }
.lv-property__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.lv-property__name { font-family: var(--lv-font-heading); font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.lv-property__location { font-size: 14px; color: var(--lv-text-muted); }
.lv-property__price-from { font-size: 12px; color: var(--lv-text-muted); margin-bottom: 2px; }
.lv-property__price { font-family: var(--lv-font-heading); font-size: 28px; font-weight: 700; color: var(--lv-dark); }
.lv-property__price-unit { font-size: 11px; color: var(--lv-gold); font-weight: 600; }

.lv-property__rating { display: flex; align-items: center; gap: 6px; margin: 12px 0 20px; }
.lv-property__stars { display: flex; gap: 2px; color: var(--lv-gold); }
.lv-property__stars svg { width: 14px; height: 14px; }
.lv-property__rating-text { font-size: 13px; color: #666; }

.lv-property__amenities-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 16px; background: var(--lv-cream); border-radius: 12px; margin-bottom: 24px;
}
.lv-property__amenity { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #444; }
.lv-property__amenity-icon { font-size: 16px; }

/* Tabs */
.lv-property__tabs { display: flex; border-bottom: 2px solid #eee; margin-bottom: 20px; }
.lv-property__tab {
  padding: 10px 20px; border: none; background: none; cursor: pointer;
  font-family: var(--lv-font-body); font-size: 13px; font-weight: 600;
  color: var(--lv-text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; text-transform: capitalize; transition: var(--lv-transition);
}
.lv-property__tab.active { color: var(--lv-dark); border-bottom-color: var(--lv-gold); }
.lv-property__tab-content { font-size: 14px; color: var(--lv-text-light); line-height: 1.7; min-height: 100px; }
.lv-property__tab-pane { display: none; }
.lv-property__tab-pane.active { display: block; }

.lv-property__actions { display: flex; gap: 12px; margin-top: 24px; }
.lv-property__actions .btn-primary { flex: 1; justify-content: center; }
.lv-property__fav { padding: 14px 20px; }

@media (max-width: 900px) {
  .lv-property__card { grid-template-columns: 1fr; }
  .lv-property__images > img { height: 300px; }
}

/* ============================================
   AMENITIES GRID
   ============================================ */
.lv-amenities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lv-amenity-card {
  background: #fff; padding: 32px 24px; border-radius: var(--lv-radius-lg); text-align: center;
  border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--lv-shadow-sm);
  transition: var(--lv-transition); cursor: default;
}
.lv-amenity-card:hover { transform: translateY(-6px); box-shadow: var(--lv-shadow-md); }
.lv-amenity-card__icon { font-size: 36px; margin-bottom: 12px; }
.lv-amenity-card__title { font-weight: 600; font-size: 15px; color: var(--lv-dark); margin-bottom: 4px; }
.lv-amenity-card__detail { font-size: 13px; color: var(--lv-text-muted); }

@media (max-width: 900px) { .lv-amenities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .lv-amenities__grid { grid-template-columns: 1fr; } }

/* ============================================
   ROOMS
   ============================================ */
.lv-rooms__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lv-room-card { position: relative; border-radius: var(--lv-radius-lg); overflow: hidden; cursor: pointer; }
.lv-room-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.lv-room-card:hover img { transform: scale(1.08); }
.lv-room-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 32px 16px 16px;
}
.lv-room-card__name { font-size: 14px; font-weight: 600; color: #fff; }
.lv-room-card__desc { font-size: 12px; color: rgba(255,255,255,0.6); }

@media (max-width: 768px) { .lv-rooms__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================
   TARIFS
   ============================================ */
.lv-tarifs__table {
  background: #fff; border-radius: var(--lv-radius-xl); overflow: hidden;
  box-shadow: 0 10px 60px rgba(0,0,0,0.06); max-width: 1000px; margin: 0 auto;
}
.lv-tarif-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px; border-bottom: 1px solid #f0f0f0;
}
.lv-tarif-row:last-child { border-bottom: none; }
.lv-tarif-row:nth-child(even) { background: var(--lv-cream); }
.lv-tarif-row__period { font-weight: 600; font-size: 15px; color: var(--lv-dark); }
.lv-tarif-row__note { font-size: 12px; color: var(--lv-text-muted); margin-top: 2px; }
.lv-tarif-row__price { font-family: var(--lv-font-heading); font-size: 24px; font-weight: 700; color: var(--lv-dark); }
.lv-tarif-row__unit { font-size: 13px; font-weight: 400; color: var(--lv-text-muted); font-family: var(--lv-font-body); }

/* ============================================
   CTA BANNER
   ============================================ */
.lv-cta {
  position: relative; padding: 100px 24px; overflow: hidden;
  background: linear-gradient(135deg, var(--lv-dark) 0%, #1a3a4a 50%, var(--lv-dark) 100%);
}
.lv-cta__pattern {
  position: absolute; inset: 0; opacity: 0.1;
  background-image: radial-gradient(circle at 30% 50%, var(--lv-gold) 1px, transparent 1px);
  background-size: 40px 40px;
}
.lv-cta__inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }
.lv-cta__inner h2 { color: #fff; margin-bottom: 20px; }
.lv-cta__inner h2 em { color: var(--lv-gold); font-style: italic; }
.lv-cta__desc { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 40px; line-height: 1.7; }
.lv-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   BOOKING SECTION (WP Booking Pro integration)
   ============================================ */
.lv-booking { background: var(--lv-cream); }
.lv-booking__wrapper {
  max-width: 900px; margin: 0 auto;
  background: #fff; border-radius: var(--lv-radius-xl);
  padding: 48px; box-shadow: var(--lv-shadow-lg);
}

/* ============================================
   GALLERY
   ============================================ */
.lv-gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px; gap: 12px;
}
.lv-gallery__item { border-radius: 14px; overflow: hidden; cursor: pointer; }
.lv-gallery__item--tall { grid-row: span 2; }
.lv-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.lv-gallery__item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .lv-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .lv-gallery__item--tall { grid-row: span 1; }
}

/* ============================================
   REVIEWS
   ============================================ */
.lv-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lv-review-card {
  background: #fff; padding: 32px; border-radius: var(--lv-radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.lv-review-card__stars { display: flex; gap: 4px; color: var(--lv-gold); margin-bottom: 16px; }
.lv-review-card__stars svg { width: 14px; height: 14px; }
.lv-review-card__text { font-size: 14px; line-height: 1.7; color: var(--lv-text-light); margin-bottom: 20px; font-style: italic; }
.lv-review-card__footer { display: flex; justify-content: space-between; align-items: center; }
.lv-review-card__name { font-weight: 600; font-size: 14px; }
.lv-review-card__date { font-size: 12px; color: var(--lv-text-muted); }
.lv-review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lv-gold), var(--lv-gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--lv-dark); font-weight: 700; font-size: 14px;
}

@media (max-width: 768px) { .lv-reviews__grid { grid-template-columns: 1fr; } }

/* ============================================
   CONTACT
   ============================================ */
.lv-contact__card {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  background: #fff; border-radius: var(--lv-radius-xl); overflow: hidden;
  box-shadow: 0 10px 60px rgba(0,0,0,0.06); max-width: 900px; margin: 0 auto;
}
.lv-contact__info { background: var(--lv-dark); padding: 40px 32px; color: #fff; }
.lv-contact__info h3 { font-family: var(--lv-font-heading); font-size: 22px; margin-bottom: 8px; color: #fff; }
.lv-contact__info-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.lv-contact__info-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-gold); margin-bottom: 6px; }
.lv-contact__info-value { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 24px; }
.lv-contact__form-area { padding: 40px 32px; }

@media (max-width: 768px) {
  .lv-contact__card { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.lv-footer { background: var(--lv-dark); padding: 60px 24px 30px; }
.lv-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.lv-footer__col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-gold); margin-bottom: 20px; }
.lv-footer__col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.lv-footer__col a:hover { color: var(--lv-gold); }
.lv-footer__col p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.lv-footer__desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.lv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.lv-footer__copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.lv-footer__powered { font-size: 12px; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .lv-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .lv-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.lv-cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(15,25,35,0.97); backdrop-filter: blur(20px);
  padding: 24px 32px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(193,165,123,0.3);
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.lv-cookie.visible { transform: translateY(0); }
.lv-cookie__text { flex: 1; min-width: 280px; }
.lv-cookie__title { font-weight: 600; color: #fff; font-size: 14px; margin-bottom: 4px; }
.lv-cookie__desc { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.5; }
.lv-cookie__buttons { display: flex; gap: 10px; flex-shrink: 0; }
.lv-cookie__btn { padding: 10px 24px; border-radius: 6px; cursor: pointer; font-family: var(--lv-font-body); font-size: 13px; font-weight: 500; }
.lv-cookie__btn--decline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.lv-cookie__btn--accept { background: linear-gradient(135deg, var(--lv-gold), var(--lv-gold-light)); border: none; color: var(--lv-dark); font-weight: 600; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lv-lightbox {
  position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.9);
  display: none; align-items: center; justify-content: center; cursor: pointer;
}
.lv-lightbox.active { display: flex; animation: lvFadeIn 0.3s ease; }
.lv-lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 12px; }
.lv-lightbox__close {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,0.1); border: none;
  color: #fff; font-size: 24px; cursor: pointer;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes lvFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lvFadeInUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.lv-animate { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.lv-animate.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   ELEMENTOR OVERRIDES — ensure theme sections
   work nicely inside Elementor
   ============================================ */
.elementor-page .lv-section { padding: 80px 0; }
.elementor-widget-shortcode .wbp-booking-widget { max-width: 100%; }

/* ============================================
   WP BOOKING PRO — THEME OVERRIDE
   Match the plugin's styles to the theme design
   ============================================ */
.wbp-booking-widget,
.wbp-contact-widget {
  font-family: var(--lv-font-body);
}

.wbp-booking-widget .wbp-pub-cal-header {
  background: var(--lv-dark);
}

.wbp-booking-widget .wbp-pub-cal-header-cell {
  font-family: var(--lv-font-body);
  letter-spacing: 0.08em;
}

.wbp-booking-widget .wbp-booking-info {
  background: linear-gradient(135deg, rgba(193,165,123,0.1), rgba(193,165,123,0.05));
  border-color: var(--lv-gold);
}

.wbp-booking-widget .wbp-booking-info strong {
  color: var(--lv-gold);
}

.wbp-booking-widget .wbp-pub-calendar {
  border-color: #e8e8e8;
  border-radius: var(--lv-radius-lg);
}

.wbp-booking-widget .wbp-nav-btn:hover {
  border-color: var(--lv-gold);
  color: var(--lv-gold);
  background: rgba(193,165,123,0.08);
}

.wbp-booking-widget .wbp-month-display {
  font-family: var(--lv-font-heading);
}

.wbp-booking-widget .wbp-pub-day.wbp-day-selected,
.wbp-booking-widget .wbp-pub-day.wbp-day-checkin {
  background: var(--lv-dark) !important;
}

.wbp-booking-widget .wbp-pub-day.wbp-day-range {
  background: rgba(15,25,35,0.1) !important;
}

.wbp-booking-widget .wbp-pub-day.wbp-day-range .wbp-pub-day-num {
  color: var(--lv-dark);
}

.wbp-booking-widget .wbp-pub-day.wbp-day-saturday {
  background: rgba(193,165,123,0.1);
  border-color: var(--lv-gold);
}

.wbp-booking-widget .wbp-pub-day.wbp-day-saturday:hover {
  background: rgba(193,165,123,0.2);
  box-shadow: inset 0 0 0 2px var(--lv-gold);
}

.wbp-booking-widget .wbp-pub-day .wbp-saturday-tag {
  background: var(--lv-gold);
  color: var(--lv-dark);
}

.wbp-booking-widget .wbp-summary {
  background: rgba(193,165,123,0.08);
  border-color: var(--lv-gold);
}

.wbp-booking-widget .wbp-summary h4 {
  color: var(--lv-dark);
  font-family: var(--lv-font-heading);
}

.wbp-booking-widget .wbp-summary-total {
  border-color: var(--lv-gold);
  color: var(--lv-dark);
}

.wbp-booking-widget .wbp-submit-btn,
.wbp-contact-widget .wbp-submit-btn {
  background: linear-gradient(135deg, var(--lv-dark), var(--lv-dark-light));
  border-radius: var(--lv-radius);
  font-family: var(--lv-font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 32px;
}

.wbp-booking-widget .wbp-submit-btn:hover,
.wbp-contact-widget .wbp-submit-btn:hover {
  background: linear-gradient(135deg, var(--lv-dark-light), var(--lv-dark));
}

.wbp-booking-widget .wbp-form,
.wbp-contact-widget .wbp-contact-form {
  border-color: #e0e0e0;
  border-radius: var(--lv-radius-lg);
}

.wbp-booking-widget .wbp-form h4,
.wbp-contact-widget .wbp-contact-header h3 {
  font-family: var(--lv-font-heading);
}

.wbp-booking-widget .wbp-field input:focus,
.wbp-booking-widget .wbp-field textarea:focus,
.wbp-contact-widget .wbp-field input:focus,
.wbp-contact-widget .wbp-field textarea:focus,
.wbp-contact-widget .wbp-field select:focus {
  border-color: var(--lv-gold);
  box-shadow: 0 0 0 3px rgba(193,165,123,0.15);
}

.wbp-booking-widget .wbp-property-info h3 {
  font-family: var(--lv-font-heading);
}

.wbp-booking-widget .wbp-price-week {
  background: rgba(193,165,123,0.12);
  color: var(--lv-dark);
}

.wbp-booking-widget .wbp-price-tag {
  background: rgba(193,165,123,0.12);
  color: var(--lv-dark);
}

.wbp-booking-widget .wbp-pub-day-price {
  color: var(--lv-gold);
}

.wbp-booking-widget .wbp-leg-selected {
  background: var(--lv-dark);
}

.wbp-booking-widget .wbp-leg-saturday {
  background: rgba(193,165,123,0.15);
  border-color: var(--lv-gold);
}

/* Thank-you overlay override */
.wbp-thankyou-close {
  background: linear-gradient(135deg, var(--lv-dark), var(--lv-dark-light)) !important;
  box-shadow: 0 4px 15px rgba(15,25,35,0.3) !important;
}

.wbp-thankyou-close:hover {
  background: linear-gradient(135deg, var(--lv-dark-light), var(--lv-dark)) !important;
}

.wbp-thankyou-text {
  background: linear-gradient(135deg, rgba(193,165,123,0.1), rgba(193,165,123,0.05)) !important;
  border-left-color: var(--lv-gold) !important;
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; width: 1px; height: 1px; overflow: hidden; }
