.carousel-container {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    background: transparent;
}

.carousel-container .carousel-inner {
    border-radius: 12px;
    background: transparent;
}

.carousel-control-next, .carousel-control-prev {
    width: 10%;
}

.carousel-slide {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.carousel-centered {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.shop-name-container {
  background-color: rgb(254 249 231 / 90%);
  color: #2d3436;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  max-width: 90%;
}

.carousel-shop-name {
  color: #2d3436 !important;
  font-size: 2rem !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
}

.description-container {
  background-color: rgb(74 144 164 / 90%);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  max-width: 80%;
}

.carousel-shop-description {
  color: white !important;
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0 !important;
}

.carousel-button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.carousel-btn {
  padding: 12px 24px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0,0,0,0.3); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.content-subtitle {
    font-size: 1rem;
}

/* Mobile responsive adjustments for carousel */
@media (max-width: 991.98px) {
    .description-container {
        display: none;
    }
}

@media (max-width: 768px) {
  .carousel-shop-name {
    font-size: 1.5rem !important;
  }
  
  .carousel-shop-description {
    font-size: 1rem !important;
  }
  
  .carousel-button-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .carousel-btn {
    width: 200px;
  }
}