.wehost-wrap,
.wehost-single-wrap {
}

.wehost-hero-section {
  background: linear-gradient(135deg, #599e9f 0%, #6aafa9 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 50px;
  text-align: center;
  color: #fff;
}

.wehost-hero-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.wehost-hero-section h1:lang(ka) {
    font-weight:700;
} 

.wehost-hero-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

.wehost-filter-section {
  background-color: #fff;
  padding: 30px 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wehost-filter-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.wehost-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wehost-currency-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #577;
  user-select: none;
}

.wehost-currency-switch-label {
  font-weight: 600;
  letter-spacing: .2px;
}

.wehost-currency-switch-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wehost-currency-switch-slider {
  position: relative;
  width: 34px;
  height: 18px;
  background: #cadfdf;
  border-radius: 999px;
  transition: background .2s ease;
  cursor: pointer;
}

.wehost-currency-switch-slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s ease;
}

.wehost-currency-switch-input:checked + .wehost-currency-switch-slider {
  background: #599e9f;
}

.wehost-currency-switch-input:checked + .wehost-currency-switch-slider::before {
  transform: translateX(16px);
}

.wehost-currency-rate-note {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #5f7d7d;
}

.wehost-filter-group { flex: 1; min-width: 200px; }
.wehost-filter-group label { display: block; margin-bottom: 8px; color: #555; font-size: 14px; font-weight: 500; }
.wehost-filter-group select,
.wehost-filter-group input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.wehost-listings-container {
  max-width: 100%;
  margin: 50px auto;
  padding: 30px 5%;
}

.wehost-section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 300;
}

.wehost-section-title:lang(ka) {
    font-weight:400;
}

.wehost-listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.wehost-property-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform .3s, box-shadow .3s;
}

.wehost-property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.wehost-property-link,
.wehost-property-nickname a {
  text-decoration: none;
  color: inherit;
}

.wehost-property-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #599e9f 0%, #6aafa9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: relative;
}

.wehost-property-image img { width: 100%; height: 100%; object-fit: cover; }

.wehost-property-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #599e9f;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.wehost-property-details { padding: 25px; }
.wehost-property-nickname { font-size: 22px; color: #599e9f; margin-bottom: 10px; font-weight: 600; }
.wehost-property-address { color: #666; font-size: 14px; margin-bottom: 20px; line-height: 1.5; }

.wehost-property-features {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.wehost-feature-item { color: #555; font-size: 13px; }
.wehost-feature-item { display: flex; align-items: center; gap: 6px; }
.wehost-feature-icon { width: 14px; height: 14px; min-width: 14px; min-height: 14px; fill: #599e9f; flex-shrink: 0; }

.wehost-property-price { font-size: 28px; color: #333; font-weight: 600; margin-bottom: 20px; }
.wehost-property-price span { font-size: 14px; color: #888; font-weight: 400; }
.wehost-property-price .wehost-price-amount { font-size: 28px; color: #333; font-weight: 600; }
.wehost-property-price .wehost-price-suffix { font-size: 14px; color: #888; font-weight: 400; }

.wehost-contact-button {
  width: 100%;
  background-color: #599e9f;
  color: #fff;
  padding: 14px;
  border: 0;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wehost-contact-button:hover { background-color: #488d8e; }
.wehost-whatsapp-icon { width: 15px; height: 15px; min-width: 15px; min-height: 15px; fill: currentColor; flex-shrink: 0; }

.wehost-single-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 5%;
}

.wehost-back-link {
  color: #599e9f;
  text-decoration: none;
  display: inline-flex;
  margin-bottom: 20px;
  font-weight: 600;
}

.wehost-detail-title { font-size: 36px; color: #333; margin-bottom: 10px; font-weight: 300; }
.wehost-detail-address { color: #666; font-size: 16px; margin-bottom: 30px; }

.wehost-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.wehost-gallery-item { position: relative; cursor: pointer; overflow: hidden; }
.wehost-gallery-item:first-child { grid-row: 1 / 3; }
.wehost-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

#wehost-show-all-photos {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.wehost-detail-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.wehost-detail-left {
  padding-right: 40px;
  border-right: 1px solid #ddd;
}

.wehost-detail-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid #eee; }
.wehost-detail-section:last-child { border-bottom: 0; }
.wehost-subtitle { font-size: 22px; color: #333; margin-bottom: 20px; font-weight: 600; }

.wehost-highlights,
.wehost-amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

.wehost-highlight-item,
.wehost-amenity-item { color: #555; font-size: 15px; }
.wehost-highlight-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden; }
.wehost-highlight-item strong { display: inline; font-size: 15px; line-height: 1.2; }
.wehost-highlight-item br { display: none; }
.wehost-highlight-item span { display: inline; font-size: 14px; line-height: 1.2; color: #666; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wehost-highlight-icon { width: 14px; height: 14px; min-width: 14px; min-height: 14px; fill: #599e9f; flex-shrink: 0; }
.wehost-amenity-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wehost-amenity-item span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wehost-amenity-icon { width: 14px; height: 14px; min-width: 14px; min-height: 14px; fill: #599e9f; flex-shrink: 0; }

.wehost-description { line-height: 1.8; color: #555; font-size: 15px; }

.wehost-booking-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.wehost-booking-price { font-size: 28px; font-weight: 600; color: #333; margin-bottom: 5px; }
.wehost-booking-price span { font-size: 16px; font-weight: 400; color: #666; }
.wehost-booking-price .wehost-price-amount { font-size: 28px; font-weight: 600; color: #333; }
.wehost-booking-price .wehost-price-suffix { font-size: 16px; font-weight: 400; color: #666; }

.wehost-booking-badge {
  display: inline-block;
  background-color: #e8f5f4;
  color: #599e9f;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wehost-booking-details { margin-bottom: 20px; }
.wehost-booking-detail-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #eee; font-size: 15px; color: #555; }
.wehost-booking-detail-item:last-child { border-bottom: none; }
.wehost-booking-label { font-weight: 500; color: #333; }

.wehost-carousel-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, .95);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.wehost-carousel-modal.active { display: flex; }

.wehost-carousel-container { position: relative; width: 90%; max-width: 1200px; height: 80vh; display: flex; align-items: center; justify-content: center; }
.wehost-carousel-image { max-width: 100%; max-height: 100%; object-fit: contain; }

.wehost-carousel-close,
.wehost-carousel-arrow {
  position: absolute;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.wehost-carousel-close {
  top: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  font-size: 24px;
  padding: 0px 0px 0px 0px;
  min-height: unset;
}

.wehost-carousel-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  font-size: 44px;
  min-width: unset;
  min-height: unset;
  padding: 0;
  margin: 0;
}
#wehost-carousel-prev { left: 20px; }
#wehost-carousel-next { right: 20px; }

.wehost-carousel-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, .7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .wehost-detail-main { grid-template-columns: 1fr; gap: 30px; }
  .wehost-detail-left { border-right: 0; padding-right: 0; }
  .wehost-booking-card { position: static; }
  .wehost-gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); height: auto; }
  .wehost-gallery-item:first-child { grid-row: 1; }
  .wehost-highlights,
  .wehost-amenities { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wehost-hero-section { padding: 50px 20px; }
  .wehost-hero-section h1 { font-size: 28px; }
  .wehost-filter-section,
  .wehost-single-wrap,
  .wehost-listings-container { padding: 20px; }
  .wehost-listings-grid { grid-template-columns: 1fr; }
}
