/* Airbnb Reviews Section */
#airbnb-reviews-section {
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
}
.airbnb-reviews-carousel .owl-carousel .owl-stage {
  display: flex;
}
.airbnb-reviews-carousel .owl-carousel .owl-item {
  display: flex;
}
.airbnb-review-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin: 0 10px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.airbnb-review-stars {
  color: #e00b41;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.airbnb-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #484848;
  flex-grow: 1;
  margin-bottom: 15px;
}
.airbnb-review-author {
  border-top: 1px solid #eee;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.airbnb-review-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.airbnb-review-date {
  color: #999;
  font-size: 13px;
}
/* Make the carousel a positioning context */
#airbnb-reviews-section .airbnb-reviews-carousel .owl-carousel {
  position: relative;
}
/* Position the nav container to overlay the carousel */
#airbnb-reviews-section .airbnb-reviews-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
  padding: 0;
}
/* Style prev and next arrows */
#airbnb-reviews-section .airbnb-reviews-carousel .owl-nav .owl-prev,
#airbnb-reviews-section .airbnb-reviews-carousel .owl-nav .owl-next {
  pointer-events: auto;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 16px;
  color: #333 !important;
  transition: background 0.2s, box-shadow 0.2s;
}
#airbnb-reviews-section .airbnb-reviews-carousel .owl-nav .owl-prev:hover,
#airbnb-reviews-section .airbnb-reviews-carousel .owl-nav .owl-next:hover {
  background: #fff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
/* Push arrows slightly outside the carousel */
#airbnb-reviews-section .airbnb-reviews-carousel .owl-nav .owl-prev {
  margin-left: -20px;
}
#airbnb-reviews-section .airbnb-reviews-carousel .owl-nav .owl-next {
  margin-right: -20px;
}
/* Carousel dots */
.airbnb-reviews-carousel .owl-dots {
  text-align: center;
  margin-top: 15px;
}
.airbnb-reviews-carousel .owl-dots .owl-dot span {
  background-color: #ccc;
}
.airbnb-reviews-carousel .owl-dots .owl-dot.active span {
  background-color: #e00b41;
}
/* Airbnb link */
.airbnb-link-wrapper {
  margin-top: 15px;
  padding-bottom: 10px;
}
.airbnb-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e00b41;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}
.airbnb-link-btn:hover,
.airbnb-link-btn:focus {
  background-color: #c00a38;
  color: #fff;
  text-decoration: none;
}
.airbnb-logo-icon {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .airbnb-review-card {
    margin: 0 5px 10px;
  }
  .airbnb-reviews-carousel .owl-nav {
    display: none;
  }
}
