.promo-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.promo-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    width: 100%;
    text-align: left;
}
.promo-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
}
.promo-content p {
    font-size: 1rem;
}
.btn-light {
    font-weight: bold;
}
.carousel-indicators {
    bottom: -40px;
}
.carousel-indicators [data-bs-target] {
    background-color: black;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}



.card {
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    background: #ff3d00;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    top: 10px;
    left: 10px;
    border-radius: 5px;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.blue { background: blue; }
.green { background: green; }
.red { background: red; }

.special-offer {
    background: url(E.jpg) no-repeat center center/cover;
    color: white;
    padding: 80px;
    position: relative;
   
}
.special-offer-overlay {
    background: rgba(0, 0, 0, 0.26);
    padding: 40px;
    border-radius: 10px;
}


