
.promo-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #8fbcbc;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.promo-text h3 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.promo-text p {
    margin: 10px 0;
    font-size: 16px;
    max-width: 300px;
}

.shop-btn {
    background: #ff3b30;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin: 10px;
}

.promo-image img {
    width: 160px;
    height: 150px;
    object-fit:fill;
    
}
@media (min-width: 1200px) {
    .promo-card {
        max-width: 1000px;
    }
    
    .promo-text h3 {
        font-size: 2.5rem;
    }
    
    .promo-text p {
        font-size: 1.4rem;
        max-width: 400px;
    }
    
    .promo-image img {
        height: 260px;
        width: 100%;
        object-fit: fill;
    }
    .promo-section {
        padding: 20px 15px;
        display: flex;
        flex-direction: row;
        gap: 30px;
    }
}
