/* ===== Outer Wrapper ===== */
.bundle-listing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ===== Single Bundle Box ===== */
.bundle-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
 
}

.bundle-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

/* ===== Bundle Inner Layout ===== */
.bundle-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ===== Product Cards ===== */
.bundle-products {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
   
}

.bundle-product {
    width: 180px;
    border-radius: 10px;
    padding: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bundle-product img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 10px;
     border: 1px solid #ddd !important;
}

.bundle-product h4 {
    font-size: 15px;
    margin-bottom: 5px;

}
.bundle-product h4 a{
 font-size: 15px;
 font-family: 'Metropolis';
 text-decoration: none !important;
}




.bundle-product .price {
   color: #555;
    font-size: 14px;
    font-family: 'Metropolis';
    font-weight: 700;
}

/* ===== Plus Sign Between Cards ===== */
.bundle-plus {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* ===== Bundle Summary (Inline with Cards) ===== */
.bundle-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    min-width: 200px;
}

.bundle-summary .bundle-price {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Metropolis';
    align-self: center;
    
}

.bundle-summary .bundle-save {
    align-self: center !important;
    font-family: 'Metropolis';
    color: #27ae60;
    font-size: 14px;
}

.bundle-summary .bundle-add-to-cart {
       font-family: 'Metropolis';
    color: #fff;
    padding: 14px 50px;
    border-radius: 8px;
    text-decoration: none !important;
    margin-top: 5px;
    display: inline-block;
    transition: 0.3s;
    background: #705bda;
}

.bundle-summary .bundle-add-to-cart:hover {
    background: #333;
}
.bundle-inner{
display: flex;
    flex-direction: row;
    gap: 80px;
    padding-top: 20px;

}
h2.bundle-title {
    font-size: 18px;
    color: #705bda;
    font-family: 'Metropolis';
}

.bundle-list-description{
font-size: 16px;
    color: black;
    font-family: 'Metropolis';


}
/* ===== Responsive ===== */
@media (max-width: 768px) {
    .bundle-inner {
        flex-direction: column;
        align-items: center;
    }
    .bundle-summary {
        align-items: center;
        margin-top: 15px;
    }
}