#itemsOverlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); z-index: 9;
    display: none; justify-content: center; align-items: center;
}

#itemsContainerWrapper {
    position: relative;
}

@media (max-width: 768px) {
    .filter-drawer {
        position: fixed; top: 60px; left: 0; right: 0;
        width: 100%; background-color: #181818;
        z-index: 1050; padding: 1rem; display: none;
    }

    .filter-drawer.show { display: block; }

    .search-sort-wrapper {
        flex-direction: column; align-items: stretch; gap: 1rem;
    }

    .sort-dropdown {
        align-self: flex-end;
    }
}


#deliveryInstructions {
    white-space: pre-line;  /* Preserves line breaks and collapses extra spaces */
}

.topup_active {
    border: 1px solid var(--border-active) !important;
    background: linear-gradient(0deg, #8b6aff26, #8b6aff26) !important;
}
.price-box-form {
    position: relative;
    overflow: hidden;
}

.circle-1 {
    color: #000000;
    font-size: 21px;
    font-weight: bolder;
    border: 1px solid white;
    padding: 3px 13px;
    background: white;
    border-radius: 31px;
    position: absolute;
    top: -11px;
    left: 24px;
}
.circle-2 {
    color: #000000;
    display: flex;
    font-size: 21px;
    font-weight: bolder;
    border: 1px solid white;
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 31px;
    align-content: center;
    align-items: center;
    flex-direction: column;
}

.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.clamp-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}









