/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 400px;
}

.carousel-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease;
}

.carousel-slide {
    width: 33.333%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,1.0), transparent);
    color: white;
    padding: 30px;
}

.slide-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.slide-content p {
    margin: 10px;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--primary);
}

.offer-section {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
  }
  
  .offer-badge {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 20px;
  }
  
  .offer-name {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .offer-period {
    display: none;

  }
  
  .countdown {
    display: block;
    margin-top: 5px;
    font-weight: bold;
    font-size: 12px;
    color: yellow;
  }
