/* =============================================
   AIRBNB-STYLE WEBSITE - MAIN STYLESHEET
   ============================================= */

:root {
  --primary: #6B7244;
  --primary-dark: #525837;
  --primary-light: #8A9158;
  --dark: #2C2C1E;
  --gray: #6B6B55;
  --light-gray: #EDEEDE;
  --border: #D8D8C4;
  --bg: #FAFAF4;
  --cream: #F0F0E4;
  --shadow: 0 2px 16px rgba(107,114,68,0.12);
  --shadow-hover: 0 4px 24px rgba(107,114,68,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.5;
}

/* Logo image in navbar — fills full navbar height */
.navbar-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

/* Footer logo image */
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  border-radius: 8px;
}

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

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

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Property/inner pages: navbar sits in the flow with a light background */
.navbar--page {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.navbar--page .navbar-nav a {
  color: var(--dark);
}

.navbar--page .navbar-nav a:hover {
  background: var(--light-gray);
}

/* When transparent (over hero), links turn white */
.navbar .navbar-nav a {
  color: rgba(255,255,255,0.92);
}
.navbar .navbar-nav a:hover {
  background: rgba(255,255,255,0.15);
}
.navbar .navbar-whatsapp-desk {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
}
.navbar .navbar-whatsapp-desk:hover {
  background: rgba(255,255,255,0.3);
}

.navbar-whatsapp {
  display: none;
}

.navbar-whatsapp-desk {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.navbar-whatsapp-desk:hover {
  background: #1db954;
  transform: translateY(-1px);
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav a {
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--transition);
}

.navbar-nav a:hover {
  background: var(--light-gray);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 8px 8px 16px;
  cursor: pointer;
  transition: box-shadow var(--transition);
}

.navbar-menu:hover {
  box-shadow: var(--shadow);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.menu-icon span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  height: 560px;
  background: linear-gradient(135deg, #4a5230 0%, #6B7244 50%, #8A9158 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../background photo/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #f5f0e8;
}

.hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  opacity: 0.88;
  color: #e8e0d0;
}

.hero-cta {
  display: inline-block;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #f5f0e8;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.hero-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

/* =============================================
   BEST PRICE BANNER
   ============================================= */

.price-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  padding: 16px 24px;
  text-decoration: none;
  transition: background 0.2s;
}

.price-banner:hover {
  background: var(--light-gray);
}

.price-banner-tag {
  background: var(--primary);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.price-banner-text {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--gray);
}

.price-banner-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--primary);
}

@media (max-width: 600px) {
  .price-banner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 14px 20px;
  }

  .price-banner-text {
    font-size: 0.82rem;
  }
}

/* Search Bar */
.search-bar {
  background: white;
  border-radius: 60px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  max-width: 620px;
  margin: 0 auto;
}

.search-field {
  flex: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-field:hover {
  background: #f7f7f7;
}

.field-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  stroke: var(--primary);
}

.field-text {
  display: flex;
  flex-direction: column;
}

.search-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 0.82rem;
  color: var(--gray);
  background: transparent;
  width: 100%;
  cursor: pointer;
  padding: 0;
  margin-top: 1px;
}

.search-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
  flex-shrink: 0;
}

.search-btn {
  background: var(--primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.search-btn svg {
  width: 16px;
  height: 16px;
  fill: white;
}

/* =============================================
   SECTION HEADERS
   ============================================= */

.section {
  padding: 60px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
}

/* =============================================
   PROPERTY CARDS GRID
   ============================================= */

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.property-card {
  cursor: pointer;
  transition: transform var(--transition);
}

.property-card:hover {
  transform: translateY(-2px);
}

.card-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .card-image-wrap img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.card-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transition: transform var(--transition);
}

.card-wishlist:hover {
  transform: scale(1.15);
}

.card-wishlist svg {
  width: 24px;
  height: 24px;
  fill: rgba(255,255,255,0.85);
  stroke: white;
  stroke-width: 1.5;
}

.card-wishlist.active svg {
  fill: var(--primary);
  stroke: var(--primary);
}

.card-body {
  padding: 14px 0 0;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  flex-shrink: 0;
}

.card-rating svg {
  width: 14px;
  height: 14px;
  fill: var(--dark);
}

.card-location {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.card-dates {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.card-price {
  font-size: 0.95rem;
}

.card-price strong {
  font-weight: 700;
  font-size: 1rem;
}

/* =============================================
   WHY US SECTION
   ============================================= */

.why-us {
  background: var(--cream);
  padding: 60px 40px;
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.why-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: #E4E8D4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: #2C2C1E;
  color: white;
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-brand .logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #A8AF7A;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

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

.property-detail {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 40px 60px;
}

.property-title-bar {
  margin-bottom: 24px;
}

.property-title-bar h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--dark);
  margin-bottom: 8px;
}

.property-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.property-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.property-meta .rating svg {
  width: 14px;
  height: 14px;
  fill: var(--dark);
}

.property-meta .reviews {
  text-decoration: underline;
  font-weight: 500;
}

.property-meta .location {
  color: var(--gray);
}

.property-meta .sep {
  color: var(--gray);
}

.meta-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.meta-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: underline;
  transition: background var(--transition);
}

.meta-btn:hover {
  background: var(--light-gray);
}

.meta-btn svg {
  width: 18px;
  height: 18px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.gallery-main {
  grid-row: 1 / 3;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition);
  cursor: pointer;
}

.gallery img:hover {
  filter: brightness(0.92);
}

.gallery-right {
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.show-all-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: white;
  border: 1.5px solid var(--dark);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.show-all-btn:hover {
  background: var(--light-gray);
}

.gallery-wrap {
  position: relative;
}

/* Property Layout */
.property-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: flex-start;
}

/* Host info */
.host-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.host-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.host-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.host-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Features strip */
.features-strip {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Description */
.description {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.description p {
  color: var(--dark);
  line-height: 1.7;
  font-size: 0.97rem;
}

.show-more {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 12px;
  padding: 0;
  display: inline-block;
}

/* Amenities */
.amenities {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.amenities h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  padding: 4px 0;
}

.amenity-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--dark);
}

/* Reviews */
.reviews-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.reviews-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.overall-rating svg {
  width: 18px;
  height: 18px;
  fill: var(--dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.review-card {
  padding: 0;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.reviewer-date {
  font-size: 0.8rem;
  color: var(--gray);
}

.review-text {
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.6;
}

/* =============================================
   BOOKING WIDGET
   ============================================= */

.booking-widget {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.booking-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.booking-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.booking-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: -14px;
}

.booking-rating svg {
  width: 14px;
  height: 14px;
  fill: var(--dark);
}

.booking-rating a {
  color: var(--gray);
  text-decoration: underline;
  font-weight: 400;
  margin-left: 4px;
}

.booking-dates {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}

.date-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
}

.date-divider {
  background: var(--border);
}

.date-field {
  padding: 12px 14px;
}

.date-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.date-field input {
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--dark);
  width: 100%;
  cursor: pointer;
  background: transparent;
}

.guests-field {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.guests-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.guests-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.guests-control span {
  font-size: 0.9rem;
  color: var(--dark);
}

.guests-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guest-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray);
  background: white;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: border-color var(--transition), color var(--transition);
}

.guest-btn:hover:not(:disabled) {
  border-color: var(--dark);
  color: var(--dark);
}

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

.guest-count {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.reserve-btn {
  width: 100%;
  background: linear-gradient(135deg, #6B7244, #525837);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  margin-bottom: 16px;
}

.reserve-btn:hover {
  opacity: 0.92;
  transform: scale(1.01);
}

.no-charge-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
}

.price-row.total {
  font-weight: 700;
  font-size: 0.97rem;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.underline {
  text-decoration: underline;
  color: var(--dark);
}

/* =============================================
   BOOKING SUCCESS MODAL
   ============================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-icon {
  width: 72px;
  height: 72px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-icon svg {
  width: 36px;
  height: 36px;
  stroke: #2E7D32;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-booking-id {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.85rem;
  margin-bottom: 28px;
  text-align: left;
}

.modal-booking-id strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.modal-close {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--primary-dark);
}

/* Modal success icon — green stays for confirmation */
.modal-icon {
  background: #E8F0D8 !important;
}
.modal-icon svg {
  stroke: var(--primary) !important;
}

/* =============================================
   BACK BUTTON
   ============================================= */

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: underline;
  margin-bottom: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: opacity var(--transition);
}

.back-btn:hover {
  opacity: 0.7;
}

.back-btn svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
  }

  .section {
    padding: 40px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid-4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-grid-4 .why-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 20px 18px;
  }

  .why-grid-4 .why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .why-grid-4 .why-card h3 {
    margin-bottom: 4px;
    font-size: 0.95rem;
  }

  .why-grid-4 .why-card p {
    font-size: 0.82rem;
    margin: 0;
  }

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

  .booking-widget {
    position: static;
    margin-bottom: 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* =============================================
   MOBILE GALLERY SWIPE CAROUSEL
   ============================================= */
@media (max-width: 768px) {
  .gallery-wrap {
    margin: 0 -16px;
  }

  .gallery {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: 280px;
    border-radius: 0;
    gap: 3px;
    grid-template-columns: unset;
  }

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

  .gallery-main {
    min-width: 92vw;
    max-width: 92vw;
    border-radius: 0;
    scroll-snap-align: start;
    flex-shrink: 0;
    grid-row: unset;
  }

  .gallery-main img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
  }

  /* make gallery-right's children join the flex row */
  .gallery-right {
    display: contents !important;
    grid-row: unset;
  }

  .gallery-right img {
    min-width: 92vw;
    max-width: 92vw;
    height: 280px;
    object-fit: cover;
    scroll-snap-align: start;
    border-radius: 0;
    flex-shrink: 0;
    cursor: zoom-in;
  }

  .show-all-btn {
    bottom: 12px;
    right: 12px;
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  /* photo counter overlay */
  .gallery-wrap::after {
    content: attr(data-count);
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    pointer-events: none;
  }
}

@media (max-width: 600px) {
  .navbar-nav {
    display: none;
  }

  .navbar-menu {
    display: none;
  }

  /* Center logo on mobile */
  .navbar {
    padding: 0 20px;
    justify-content: center;
  }

  .navbar-logo {
    position: static;
    transform: none;
  }


  .navbar-whatsapp-desk {
    display: none;
  }

  .navbar-whatsapp {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
  }

  .hero {
    height: 520px;
  }

  /* Fix hero background on mobile */
  .hero-bg {
    background-position: center center;
    background-size: cover;
    filter: brightness(0.5);
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .search-bar {
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    gap: 0;
    max-width: 100%;
  }

  .search-field {
    background: white;
    border-radius: 0;
    width: 100%;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
  }

  .field-icon {
    width: 20px;
    height: 20px;
  }

  .search-field label {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .search-field input {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
  }

  .search-divider {
    display: none;
  }

  .search-btn {
    width: 100%;
    border-radius: 0;
    height: 52px;
    margin: 0;
    border-radius: 0 0 20px 20px;
    font-size: 1rem;
    font-weight: 600;
    gap: 8px;
  }

  .search-btn svg {
    width: 18px;
    height: 18px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .property-detail {
    padding: 16px 16px 80px;
  }

  /* photo modal: 1 column on small phones */
  .photo-modal-grid {
    grid-template-columns: 1fr !important;
  }

  .photo-modal-inner {
    padding: 20px 16px;
    border-radius: 12px;
  }
}

/* =============================================
   MOBILE SEARCH PILL
   ============================================= */
.mobile-search-pill {
  display: none;
}

@media (max-width: 600px) {
  .desktop-search {
    display: none !important;
  }

  .mobile-search-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: none;
    border-radius: 40px;
    padding: 12px 12px 12px 18px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    cursor: pointer;
    text-align: left;
  }

  .mobile-search-pill svg:first-child {
    flex-shrink: 0;
    color: var(--dark);
    stroke: var(--dark);
  }

  .pill-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .pill-main {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
  }

  .pill-sub {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
  }

  .pill-filter {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark);
  }
}

/* =============================================
   BOTTOM NAVIGATION BAR (mobile only)
   ============================================= */
.bottom-nav {
  display: none;
}

@media (max-width: 600px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 0 12px;
    text-decoration: none;
    color: var(--gray);
    font-size: 0.68rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  .bottom-nav-item.active,
  .bottom-nav-item:hover {
    color: var(--primary);
  }

  .bottom-nav-wa {
    color: #25D366 !important;
  }

  .bottom-nav-wa svg {
    filter: drop-shadow(0 1px 3px rgba(37,211,102,0.3));
  }

  .bottom-nav-item svg {
    stroke: currentColor;
  }

  /* Push content above bottom nav */
  body {
    padding-bottom: 65px;
  }
}

/* =============================================
   MOBILE PROPERTY CARDS (Airbnb style)
   ============================================= */
@media (max-width: 600px) {
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 4px;
  }

  .property-card {
    width: 100%;
  }

  .card-image-wrap {
    aspect-ratio: 4/3;
    border-radius: 16px;
  }

  .card-body {
    padding: 12px 4px 0;
  }

  .card-title {
    font-size: 1rem;
    font-weight: 600;
  }

  .card-location {
    font-size: 0.85rem;
    color: var(--gray);
  }

  .card-dates {
    font-size: 0.82rem;
    color: var(--gray);
  }

  .card-price {
    font-size: 0.95rem;
    margin-top: 4px;
  }

  .card-badge {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  /* More compact section header on mobile */
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 40px 20px;
  }
}

/* =============================================
   MOBILE LIGHTBOX FIXES
   ============================================= */
@media (max-width: 768px) {
  /* Fullscreen black background */
  .lightbox {
    background: #000;
  }

  /* Image fills almost entire screen */
  .lightbox-img-wrap {
    padding: 54px 0 !important;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-img-wrap img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100svh - 108px);
    object-fit: contain;
    border-radius: 0;
  }

  /* Hide thumbnails — give all space to photo */
  .lightbox-thumbnails {
    display: none !important;
  }

  /* Arrows: smaller, closer to edges */
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.18);
  }

  .lightbox-arrow.prev { left: 6px; }
  .lightbox-arrow.next { right: 6px; }

  /* Counter centered at top */
  .lightbox-counter {
    font-size: 0.85rem;
    padding: 6px 14px;
    top: 14px;
  }

  /* Close button */
  .lightbox-close {
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* =============================================
   STICKY BOTTOM RESERVE BAR (mobile only)
   ============================================= */
.mobile-reserve-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  display: none;
}

@media (max-width: 600px) {
  .mobile-reserve-bar {
    display: flex;
  }
}

.mobile-reserve-bar .mob-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.mobile-reserve-bar .mob-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray);
}

.mobile-reserve-bar .mob-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.mobile-reserve-bar .mob-btn:hover {
  background: var(--primary-dark);
}

/* =============================================
   LIGHTBOX — Fullscreen photo viewer
   ============================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 70px 80px;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  user-select: none;
  transition: opacity 0.15s ease;
}

.lightbox-img-wrap img.fading {
  opacity: 0;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-counter {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(0,0,0,0.45);
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 10;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  font-size: 1.4rem;
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,0.28);
}

.lightbox-arrow.prev { left: 16px; }
.lightbox-arrow.next { right: 16px; }

.lightbox-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.lightbox-thumbnails {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  overflow-x: auto;
  background: rgba(0,0,0,0.55);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.lightbox-thumbnails img {
  height: 56px;
  width: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}

.lightbox-thumbnails img.active,
.lightbox-thumbnails img:hover {
  opacity: 1;
  border-color: white;
}

/* Photo Modal */
.photo-modal-inner {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 960px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.photo-modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
  z-index: 1;
}

.photo-modal-close:hover {
  background: var(--primary);
}

.photo-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  clear: both;
}

.photo-modal-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.photo-modal-grid img:hover {
  filter: brightness(0.88);
}

@media (max-width: 700px) {
  .photo-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   BOOKING CALENDAR WIDGET
   ============================================= */

.bc-widget {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.bc-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.bc-from {
  font-size: 0.82rem;
  color: var(--gray);
}

.bc-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.bc-unit {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Selected dates pills */
.bc-selected-dates {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.bc-date-pill {
  flex: 1;
  padding: 12px 14px;
  cursor: pointer;
}

.bc-date-pill:first-child {
  border-right: 1px solid var(--border);
}

.bc-date-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 3px;
}

.bc-date-val {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.bc-date-sep {
  color: var(--gray);
  font-size: 0.9rem;
  padding: 0 4px;
  flex-shrink: 0;
}

/* Month navigation */
.bc-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bc-nav-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.15s;
}

.bc-nav-btn:hover {
  background: var(--light-gray);
}

/* Calendar months */
.bc-calendars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.bc-loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
  padding: 20px 0;
}

.bc-month-name {
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--dark);
}

.bc-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 4px;
}

.bc-weekdays span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray);
  padding: 4px 0;
}

.bc-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.bc-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  border-radius: 50%;
  transition: background 0.12s;
}

.bc-empty {
  background: none;
}

.bc-past {
  color: #ccc;
  text-decoration: line-through;
}

.bc-booked {
  background: #f5e6e6;
  color: #c9a0a0;
  text-decoration: line-through;
  cursor: not-allowed;
  border-radius: 0;
}

.bc-available {
  cursor: pointer;
}

.bc-available:hover {
  background: var(--light-gray);
}

.bc-checkin,
.bc-checkout {
  background: var(--primary) !important;
  color: white !important;
  border-radius: 50% !important;
  font-weight: 700;
}

.bc-inrange {
  background: var(--cream);
  border-radius: 0;
  color: var(--dark);
}

.bc-min-required {
  background: #f0eedf;
  border-radius: 0;
  color: var(--dark);
  opacity: 0.75;
}

.bc-min-required .bc-day-price {
  color: var(--primary);
}

.bc-minstay-notice {
  background: #fff8ed;
  border: 1px solid #f5c97a;
  border-radius: 8px;
  color: #8a6400;
  font-size: 0.82rem;
  padding: 10px 14px;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

/* Summary */
.bc-summary {
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
}

.bc-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.bc-total-row {
  font-weight: 700;
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 6px;
}

.bc-note {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

/* WhatsApp button */
.bc-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.2s, transform 0.15s;
}

.bc-wa-btn:hover {
  background: #1db954;
  transform: translateY(-1px);
}

/* Clear button */
.bc-clear-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.82rem;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 10px;
  padding: 4px;
}

/* Mobile: stack months vertically */
@media (max-width: 600px) {
  .bc-calendars {
    grid-template-columns: 1fr;
  }

  .bc-widget {
    padding: 18px 14px;
  }
}

/* Day number + price inside calendar cell */
.bc-day {
  flex-direction: column;
  gap: 1px;
  aspect-ratio: auto;
  padding: 4px 2px;
  min-height: 44px;
  border-radius: 8px;
}

.bc-day-num {
  font-size: 0.82rem;
  line-height: 1;
}

.bc-day-price {
  font-size: 0.6rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1;
}

.bc-checkin .bc-day-price,
.bc-checkout .bc-day-price,
.bc-inrange .bc-day-price {
  color: rgba(255,255,255,0.85);
}

.bc-inrange .bc-day-price {
  color: var(--primary);
}
