/* Featured Wineries Section Redesigned Styles */
#featured-wineries-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
#featured-wineries-section .section-title {
  color: #102a4d;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
#featured-wineries-section .section-subtitle {
  color: #666;
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 15px;
}

/* Card Basics */
.featured-winery-card {
  display: block;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-color: #eee;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.featured-winery-card:hover {
  transform: translateY(-8px);
}

.winery-card-img {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}

.winery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.winery-name {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1.1;
}

.winery-location {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0 0 12px 0;
  font-weight: 400;
}

.winery-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.winery-meta .reviews {
  font-size: 0.85rem;
  font-weight: 400;
}
.winery-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.star-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ffc107;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") no-repeat center;
}

/* Showcase Layout: [TALL CARD] [SMALL CARD] [SMALL CARD] */
.fw-showcase {
  display: flex;
  gap: 24px;
  margin-top: 50px;
  align-items: flex-start;
}

.fw-main-col {
  flex: 0 0 35%;
  /* Left card is tall */
}
.fw-main-col .winery-card-img {
  height: 454px;
}
.fw-main-col .winery-name {
  font-size: 2.25rem;
}

.fw-side-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Nav below the side cards */
}
.fw-side-col .carousel-nav-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.fw-side-row {
  display: flex;
  gap: 24px;
  flex: 1;
}

.fw-side-card {
  flex: 1;
}
.fw-side-card .winery-card-img {
  height: 390px;
}

.custom-owl-nav {
  display: flex;
  gap: 16px;
}
.custom-owl-nav button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  padding: 0;
}
.custom-owl-nav button:hover {
  border-color: #102a4d;
  background-color: #f8f9fa;
  color: #102a4d;
}
.custom-owl-nav button svg {
  width: 28px;
  height: 28px;
}

/* Responsive */
@media (max-width: 1200px) {
  #featured-wineries-section .section-title {
    font-size: 2.75rem;
  }
}
@media (max-width: 992px) {
  .fw-main-col {
    flex: 0 0 40%;
  }
  .fw-main-col .winery-card-img {
    height: 500px;
  }
  .fw-side-card .winery-card-img {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .fw-showcase {
    display: none !important;
  }
  .fw-mobile-swipe-layout {
    display: block !important;
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 12px;
    margin-top: 32px;
  }
  .fw-mobile-cards-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .fw-mobile-cards-container::-webkit-scrollbar {
    display: none;
  }
  .fw-mobile-card {
    scroll-snap-align: center;
    flex: 0 0 85%;
    min-width: 280px;
  }
  .fw-mobile-card .winery-card-img {
    height: 400px;
  }
  #featured-wineries-section .section-title {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=featured-wineries.css.map */
