.section-subtitle {
    text-align: center;
    font-size: large;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
    max-width: 1400px;
    margin: 10px auto;
}

/* Bundle Card */
.bundle-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bundle-image {
    /* width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden; */
}

.bundle-image img {
    width: 100%;
    height: 300px;
    object-fit: fill;
    border-radius: 4px;
    margin-bottom: 10px;
}

.bundle-card:hover .bundle-image img {
    transform: scale(1.06);
}

.bundle-badge {
    position: absolute;
    top: 10px;
    background: linear-gradient(150deg, var(--primary-color) 40%, var(--header-bg-color) 60%);
    color: var(--zh-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: var(--zh-font-size-lg);
    box-shadow: 0 1px 7px var(--icon-header-hover-color);
}

.bundle-content {
    padding: 25px;
}

.bundle-description {
    color: var(--body-text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    /* margin-bottom: 15px; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bundle-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 20px; */
    padding: 6px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.bundle-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bold-text-color);
}

.bundle-product-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--body-text-color);
}

.bundle-product-count i {
    color: #f5af19;
}

.bundle-actions {
    display: flex;
    gap: 10px;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results p {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* .page-hero h1 {
        font-size: 1.8rem;
    } */

    .section-subtitle {
        font-size: 14px;
    }

    .bundles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        min-width: 100%;
        margin: 9px auto;
    }

    .bundle-card {
        min-width: 45%;
        padding: 6px;
        box-shadow: 0 2px 8px rgb(255 193 7 / 49%);
    }

    .bundle-image {
        width: 100%;
        height: 150px;
        margin-bottom: 0;
    }

    .bundle-image img {
        height: 150px;
        object-fit: fill;
        margin-bottom: 8px;
    }

    .bundle-badge {
        position: fixed;
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .bundle-title {
        font-size: 0.9rem;
        margin: 10px 0;
    }

    .bundle-description {
        font-size: 0.75rem;
    }

    .bundle-info {
        flex-direction: column;
        padding: 4px 8px;
    }

    .bundle-price {
        font-size: 1.2rem;
    }

    .bundle-product-count {
        font-size: 0.75rem;
    }

    .bundle-actions {
        gap: 5px
    }

    .btn-card.btn-view-cart,
    .btn-card.btn-checkout-mini {
        font-size: 7.5px !important;
        font-weight: 900;
        height: 25px !important;
    }

    .btn-card.btn-checkout-mini::before,
    .btn-card.btn-view-cart::before {
        content: "";
        top: 0 !important;
        margin: 0 2px !important;
        width: 16px !important;
        height: 16px !important;
    }

    .btn-view-cart,
    .btn-checkout-mini {
        margin-top: 2px;
    }
}