﻿.horizontal-card {
    padding: 20px;
    max-width: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff; 
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: all 0.3s ease;
}
.section-title{
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    padding-top: 10px;
}
.bundle-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 160px;
    flex-shrink: 0;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f47b22;
}

    .product-card:hover .product-image {
        transform: scale(1.05);
    }

.product-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.product-title {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 1.3;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.discount-price {
    font-size: 16px;
    font-weight: 700;
    color: #27ae60;
}

.plus-icon-inline {
    font-size: 26px;
    font-weight: bold;
    color: #f47b22;
    padding: 0 10px;
    flex-shrink: 0;
}
.pulse-icon {
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 26px;
    font-weight: bold;
    color: #f47b22;
    border: 2px solid #f47b22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-border 1.8s infinite;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(244, 123, 34, 0.2);
}
.bundle-desc {
    background: #fff5e6;
    color: #8a4d00;
    border: 1px solid #ffd8a8;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(255, 186, 108, 0.1);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 123, 34, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(244, 123, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 123, 34, 0);
    }
}

.bundle-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.total-price {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #f47b22 0%, #ff6b35 100%);
    color: white;
    border: none;
    padding: 5px 11px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(244, 123, 34, 0.3);
}

    .add-to-cart-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(244, 123, 34, 0.4);
    }
@media (max-width: 768px) {
    .horizontal-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .bundle-summary {
        align-items: center;
        margin-left: 0;
    }

    .plus-icon-inline {
        display: none;
    }
}
