.bundle-hero {
    background: #f5faf6;
}

.bundle-card,
.bundle-section {
    border: 1px solid #e7ece8;
    border-radius: 8px;
    background: #fff;
}

.bundle-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(32, 60, 44, 0.07);
}

.bundle-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    background: #f5f7f5;
    overflow: hidden;
}

.bundle-card__image img,
.bundle-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.bundle-card__body h3 {
    margin: 0;
}

.bundle-card__body h3 a {
    color: #1f3427;
    text-decoration: none;
}

.bundle-card__body p {
    color: #5f6d63;
}

.bundle-card__price {
    color: #198754;
    font-size: 22px;
    font-weight: 700;
}

.bundle-hero__image {
    max-height: 360px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(32, 60, 44, 0.09);
}

.bundle-total {
    display: inline-grid;
    gap: 2px;
    padding: 14px 18px;
    border: 1px solid #dce8df;
    border-radius: 8px;
    background: #fff;
}

.bundle-total span {
    color: #5f6d63;
    font-size: 14px;
}

.bundle-total strong {
    color: #198754;
    font-size: 30px;
    line-height: 1.1;
}

.bundle-total small {
    color: #bb2d3b;
}

.bundle-section {
    margin-bottom: 24px;
    padding: 24px;
}

@media (max-width: 767.98px) {
    .bundle-total {
        width: 100%;
    }

    .bundle-section {
        padding: 18px;
    }
}

