/* ============================
   BUNDLES CATEGORY GRID STYLE
   ============================ */

.bundles-section-wrapper {
    padding: 30px 20px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header with icon + white title */
.bundles-header {
    text-align: center;
    margin-bottom: 20px;
}

.bundles-header img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.bundles-header h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    color: #ffffff; /* ✅ White text */
}

/* ==============
   Grid Layout
   ============== */
.bundles-horizontal-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    justify-items: center;
    padding-bottom: 10px;

    /* ✅ Remove overflow scrollbars */
    overflow-x: hidden;
    overflow-y: visible;
}

/* ================
   Green Card Style
   ================ */
.bundle-subcard {
    background: #95c362;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.bundle-subcard:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
}

/* =================
   Image inside Card
   ================= */
.bundle-subcard img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background-color: #000;
    padding: 12px;
    display: block;
}

/* ===================
   Category Name Text
   =================== */
.bundle-subcard span {
    display: block;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* ========================
   Responsive Media Queries
   ======================== */
@media screen and (max-width: 768px) {
    .bundles-horizontal-list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .bundle-subcard img {
        height: 150px;
    }
}

@media screen and (max-width: 480px) {
    .bundles-horizontal-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .bundle-subcard img {
        height: 130px;
    }
}

body::-webkit-scrollbar,
.bundles-section-wrapper::-webkit-scrollbar {
    display: none !important;
}

.bundles-horizontal-list {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
