.subscribe-title {
    font-size: 23px !important;
    margin: 20px 0;
    font-weight: 500;
    font-family: 'Gilroy', sans-serif;
}

.offers-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-card {
    flex: 0 0 100%;
    height: 180px;
    background-size: cover;
    border-radius: 12px;
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: border-color 0.3s;
}

.offer-card .cart-badge-link,
.offer-card .old-price, 
.offer-card .new-price{
    color: #fff;;
}

.offer-card:hover {
    border-color: #555;
}

/* Cart Icon top-right */
.cart-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cart-badge svg {
    width: 18px;
    fill: white;
}

/* Content inside card */
.offer-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    width: 50%; 
    color: #fff;
}

.price-container {
    position: absolute;
    bottom: 15px;
    right: 15px;
    text-align: right;
}

.old-price, 
.elementor-product-variable .old-price .woocommerce-Price-amount.amount {
    display: block;
    text-decoration: line-through;
    font-size: 16px;
    margin-bottom: 5px;
}

.new-price,
.elementor-product-variable .new-price .woocommerce-Price-amount.amount {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.elementor-product-variable .new-price .woocommerce-Price-amount.amount {
    margin-top: 0;
}



/* Gold border effect like screenshot (Optional but matches) */
.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.05);
    pointer-events: none;
}

@media (min-width: 320px) {
    .offer-card {
        height: 180px;
    }
    .subscribe-title {
        font-size: 25px !important;
    }
}
@media (min-width: 480px) {
    .offer-card {
        flex: 0 0 calc(50% - 10px);
    }
}



@media (min-width: 992px) {
    .offer-card {
        flex: 0 0 calc(33.33% - 13.4px); 
    }
    
    .subscribe-title {
        font-size: 32px !important;
        margin: 20px 0 25px;
    }
}







/* @media (min-width: 320px) {
}

@media (min-width: 480px) {
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}
 */
