/* Section styling */
.product-highlights-section {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 10px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Product card styling */
.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 490px !important;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  overflow: hidden;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.product-link {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--secondary-color);
  align-self: flex-start;
}

.product-link:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

/* OWL NAV AS ROUND BUTTONS (same vibe as Bootstrap controls) */
.product-highlights-section .owl-nav {
  margin-top: 0;
}

.product-highlights-section .owl-nav button.owl-prev,
.product-highlights-section .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  background-color: var(--secondary-color) !important;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.product-highlights-section .owl-nav button.owl-prev {
  left: -20px;
}

.product-highlights-section .owl-nav button.owl-next {
  right: -20px;
}

.product-highlights-section .owl-nav button span {
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
}

.product-highlights-section .owl-nav button:hover {
  filter: brightness(1.05);
}

/* Dots styling */
.product-highlights-section .owl-dots {
  margin-top: 1.5rem;
}

.product-highlights-section .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ddd;
  transition: 0.3s;
}

.product-highlights-section .owl-dots .owl-dot.active span {
  background: var(--secondary-color);
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-highlights-section {
    padding: 1.5rem !important;
  }
  .product-highlights-section .owl-nav button.owl-prev {
    left: -5px;
  }
  .product-highlights-section .owl-nav button.owl-next {
    right: -5px;
  }
}/*# sourceMappingURL=product-carousel.css.map */