* {
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--text)/ 0.2) hsl(var(--muted));

}

.gradientCardBG {
    background-image: linear-gradient(to bottom right, #00aadf, #8448d0, #f000bb);
}

.btn-more {
    background-color: transparent;
    background-image: linear-gradient(100deg, #d90268 0%, #233462 100%);
    border-radius: 8px 8px 8px 8px;
    padding: 6px 6px 6px 6px;

}

.cart-summary {
    position: sticky;
    top: 9rem;
    align-self: start;
}



.d-none {
    display: none;
}

.empty-cart-wrapper {
    min-height: min(80vh, 400px);
}

.empty-cart-icon {
    width: 80px;
}

.address-modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#addaddressform button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}