/* /Components/BackgroundSelector/BackgroundSelector.razor.rz.scp.css */
.bg-image-option[b-7fhya0j7nq] {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}


    .bg-image-option:hover[b-7fhya0j7nq] {
        border-color: #007bff;
    }
/* /Components/Category/CategoryCarousel.razor.rz.scp.css */
.category-carousel-container[b-1n3dbq4v6d] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0;
    margin: 0;
}

.category-carousel[b-1n3dbq4v6d] {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.5rem;
}

.category-item[b-1n3dbq4v6d] {
    scroll-snap-align: start;
    flex: 0 0 25%; /* 4 ítems en móviles */
    max-width: 25%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .category-item[b-1n3dbq4v6d] {
        flex: 0 0 20%; /* 5 ítems en desktop */
        max-width: 20%;
    }
}
/* /Components/Header/StoreHeaderComponent.razor.rz.scp.css */
.restaurant-header[b-7isdhqzk3i] {
    height: 200px;    
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.store-name-tab[b-7isdhqzk3i] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
}
.overlay-header[b-7isdhqzk3i] {
    background-color: rgba(0, 0, 0, 0.1); /* semitransparente para oscurecer levemente */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* /Components/Modal/LoadingOverlay.razor.rz.scp.css */
.loading-overlay[b-oeerr0mtit] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8); /* blanco con opacidad */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.loading-content[b-oeerr0mtit] {
    text-align: center;
}
/* /Components/PreviewPhoneView/StorePreviewPage.razor.rz.scp.css */
.preview-phone[b-n512t8c3hz] {
    width: 360px;
    height: 720px;
    border: 16px solid #444;
    border-radius: 40px;
    background-color: #222;
    padding: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.preview-screen[b-n512t8c3hz] {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    position: relative;
    background-color: transparent;
}
/* /Components/Product/ProductModalComponent.razor.rz.scp.css */
.modal-backdrop[b-qhw7ebhmbm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.modal-content[b-qhw7ebhmbm] {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    text-align: center; /* Asegura que todo el contenido esté centrado horizontalmente */
}

.modal-image[b-qhw7ebhmbm] {
    width: 100%;
    max-width: 250px;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto; /* Estas dos líneas centran la imagen horizontalmente */
}
/* /Components/Product/ProductRowItemComponent.razor.rz.scp.css */
.product-row[b-j7lb9hnaqq] {
    cursor: pointer;
    transition: background-color 0.3s ease;    
    margin-bottom: 0.75rem; /* Aumentá según lo que necesites (ej: 1rem o más) */
    border-radius: 0.5rem;
}

    .product-row:hover[b-j7lb9hnaqq] {
        background-color: #f8f9fa; /* color gris claro al pasar el mouse */
    }

.product-name[b-j7lb9hnaqq] {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price[b-j7lb9hnaqq] {
    font-weight: 600;
    color: #333;
}

.product-image img[b-j7lb9hnaqq] {
    border-radius: 8px;
}
/* /Pages/Category/CategoryListPage.razor.rz.scp.css */
.table-description-limit[b-0fmcsq9obs] {
    display: block;
    max-height: 1.5em; /* Limita la altura */
    overflow: hidden; /* Oculta el contenido excedente */
    white-space: nowrap; /* Impide saltos de línea */
    text-overflow: ellipsis; /* Agrega los puntos suspensivos */
    max-width: 300px; /* Ajusta según el ancho de tu columna */
    cursor: pointer; /* Indica que se puede interactuar */
}
.row-invisible[b-0fmcsq9obs] {
    opacity: 0.5;
}
/* /Pages/Product/ProductListPage.razor.rz.scp.css */
.table-description-limit[b-jby27qjqqd] {
    display: block;
    max-height: 1.5em; /* Limita la altura */
    overflow: hidden; /* Oculta el contenido excedente */
    white-space: nowrap; /* Impide saltos de línea */
    text-overflow: ellipsis; /* Agrega los puntos suspensivos */
    max-width: 300px; /* Ajusta según el ancho de tu columna */
    cursor: pointer; /* Indica que se puede interactuar */
}
.modal-backdrop[b-jby27qjqqd] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-simple[b-jby27qjqqd] {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.row-invisible[b-jby27qjqqd] {
    opacity: 0.5;
}


/* /Pages/Public/Menu/MenuListPage.razor.rz.scp.css */
.background-overlay-clean[b-dv81xj6qsk] {
    background-color: rgba(255, 255, 255, 0.85); /* Blanco con buena legibilidad */
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-2e86nqlduk] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-2e86nqlduk] {
    flex: 1;
}

.sidebar[b-2e86nqlduk] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-2e86nqlduk] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-2e86nqlduk]  a, .top-row .btn-link[b-2e86nqlduk] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-2e86nqlduk] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-2e86nqlduk] {
        display: none;
    }

    .top-row.auth[b-2e86nqlduk] {
        justify-content: space-between;
    }

    .top-row a[b-2e86nqlduk], .top-row .btn-link[b-2e86nqlduk] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-2e86nqlduk] {
        flex-direction: row;
    }

    .sidebar[b-2e86nqlduk] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-2e86nqlduk] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-2e86nqlduk] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
