﻿/*.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
}*/


/* Category Card */
.category-item {
    min-width: 80px;
    min-height: 50px;
    height: 80px;
    /*padding: 4px 10px; #3874FF*/
    text-align: center;
    text-decoration: none !important;
    color: #444;
    border: 1px solid #cbd0dd;
    border-radius: 12px;
    background: #fff;
    transition: all .25s ease;
}

    .category-item span {
        font-size: 22px;
        display: block;
        margin-bottom: 6px;
    }

    .category-item small {
        font-size: 12px;
        font-weight: 500;
    }

    /* Hover */
    .category-item:hover {
        transform: translateY(-3px);
        border-color: #ff7a00;
        color: #ff7a00;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    /* Active (Deals) */
    .category-item.active {
        border-color: #ff7a00;
        background: #fff7ef;
        color: #ff7a00;
    }

/*
.hero-image-container,
.hero-image-container * {
    pointer-events: none;
}


.carousel,
.carousel * {
    pointer-events: auto;
}*/

/* Disable interaction on hero visuals */
.hero-image-container {
    pointer-events: none;
}

    /* Re-enable only real interactive content */
    .hero-image-container .carousel,
    .hero-image-container .carousel * {
        pointer-events: auto;
    }

/* Category bar (explicitly interactive) */
.category-item,
.category-item * {
    pointer-events: auto;
}

.vendor-section {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* Submenu arrow spacing fix (Phoenix mobile override-safe) */
/*.navbar-vertical .nav .nav-item .nav-link .bi-arrow-return-right {
    min-width: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}*/

/* Consistent spacing between arrow and text */
/*.navbar-vertical .nav .nav-item .nav-link > .d-flex {
    gap: 0.5rem;
}*/

/* Mobile submenu indent */
/*@media (max-width: 767.98px) {
    .navbar-vertical .nav .parent .nav-link {
        padding-left: 2.25rem;
    }
}*/


/* Fixed-width submenu icon wrapper */
.submenu-icon {
    width: 1.25rem;
    min-width: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Spacing between icon and text */
.navbar-vertical .nav .nav-link > .d-flex {
    gap: 0.5rem;
}