/* Home Special Offers Carousel Styles */
/*
.home-slider {
  padding: 40px 0;
  background: #fff;
}

.homeb-banner {
  position: relative;
}

.text-banner {
  text-align: center;
  margin-bottom: 30px;
}

.deals-list-title1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c5530;
  margin-bottom: 10px;
}

.deals-list-subtitle1 {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

.carousal-home {
  position: relative;
}

.home-specials-carousel .item {
  position: relative;
  margin: 0 10px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.home-specials-carousel .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.home-specials-carousel .item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.home-specials-carousel .item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.special-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.home-specials-carousel .item:hover .special-overlay {
  transform: translateY(0);
}

.special-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.special-description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.special-placeholder {
  background: linear-gradient(135deg, #2c5530, #4a7c59);
  color: white;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.special-placeholder .special-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.special-placeholder .special-description {
  font-size: 0.9rem;
  opacity: 0.9;
}
*/
/* Owl Carousel Custom Styles */
/*
.home-specials-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-specials-carousel .owl-nav button {
  position: absolute;
  background: rgba(44, 85, 48, 0.9) !important;
  color: white !important;
  border: none !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  pointer-events: all;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-specials-carousel .owl-nav button:hover {
  background: #2c5530 !important;
  transform: scale(1.1);
}

.home-specials-carousel .owl-nav .owl-prev {
  left: -25px;
}

.home-specials-carousel .owl-nav .owl-next {
  right: -25px;
}

.home-specials-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.home-specials-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.home-specials-carousel .owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.home-specials-carousel .owl-dots .owl-dot.active span,
.home-specials-carousel .owl-dots .owl-dot:hover span {
  background: #2c5530;
  transform: scale(1.2);
}
*/
/* Responsive Design */
/*
@media (max-width: 768px) {
  .deals-list-title1 {
    font-size: 2rem;
  }
  
  .deals-list-subtitle1 {
    font-size: 1rem;
  }
  
  .home-specials-carousel .item {
    margin: 0 5px;
  }
  
  .home-specials-carousel .item img,
  .special-placeholder {
    height: 200px;
  }
  
  .home-specials-carousel .owl-nav .owl-prev {
    left: -15px;
  }
  
  .home-specials-carousel .owl-nav .owl-next {
    right: -15px;
  }
  
  .home-specials-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .home-slider {
    padding: 20px 0;
  }
  
  .deals-list-title1 {
    font-size: 1.8rem;
  }
  
  .special-overlay {
    position: relative;
    transform: none;
    background: rgba(44, 85, 48, 0.9);
    padding: 15px;
  }
}
*/
/* Loading States */
/*
.carousel-loading {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.loading-spinner {
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #2c5530;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.home-specials-carousel.loading {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
*/
/* Ensure carousel maintains structure during loading */
/*
.home-specials-carousel:not(.owl-loaded) {
  display: flex;
  overflow: hidden;
}

.home-specials-carousel:not(.owl-loaded) .item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 10px;
}

@media (max-width: 992px) {
  .home-specials-carousel:not(.owl-loaded) .item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 768px) {
  .home-specials-carousel:not(.owl-loaded) .item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .home-specials-carousel:not(.owl-loaded) .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
*/
#block-thesource-blue-homespecialoffers .owl-dots {
    display: none;
}