.heaven-categories-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.scroll-btn {
    background: black;
    color: white;
    border: none;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 2;
}
.scroll-btn.left { margin-right: 8px; }
.scroll-btn.right { margin-left: 8px; }

.heaven-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-grow: 1;
    scrollbar-width: none;
}
.heaven-categories::-webkit-scrollbar {
    display: none;
}

.category-tab {
    flex: 0 0 auto;
    border: 1px dashed #fff;
    padding: 12px;
    border-radius: 12px;
    background: black;
    color: white;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    width: 150px;
    scroll-snap-align: start;
}

.category-tab img {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}
.category-tab.active {
    background : #E8BE4D!important ;
    border-color: #E8BE4D!important;
    color:#000;
}
.heaven-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(244px, 1fr));
    gap: 20px;
    justify-content: center;
    
    max-width: 100%;
    margin: 0 ;
}

@media (min-width: 1100px) {
    .heaven-items {
        grid-template-columns: repeat(5, 1fr); /* Exactly 5 items per row */
    }
}

.heaven-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items:center;
    background: #fff;
    border-radius: 20px;
    padding: 10px 10px 20px 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.card-top {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.prices {
    width: 100%;
    margin-top: 10px;
}

.price-btn {
    background: black;
    color: white;
    padding: 6px 12px;
    margin-top: 6px;
    border-radius: 100px;
    display: block;
    font-weight: 600;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}



.heaven-card h3{
    font-weight:600;
    font-size:18px;
    color:#000;
    margin-bottom:10px;
}
.item-img {
    width: 70%;
    border-radius: 12px;
    margin-bottom: 10px;
}
.label {
    background: none;
    color: #000;
    padding: 4px 10px;
    margin: 10px 0;
    border-radius: 100px;
    border: 1px solid #000;
    display: inline-block;
}


.heaven-desc p {
    font-family:"Lato", Sans-serif;
    font-weight:400;
    margin: 0 0 7px;
    line-height: 1.1;
    font-size:14px;
    color:#000;
}
.heaven-categories::-webkit-scrollbar {
    display: none;
}
.heaven-categories {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
}
.card-top {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

