/* ===================================================
   WANT - ESTILOS PRINCIPALES (Solo para usuarios)
   Inspirado en PedidosYa - Diseño moderno y limpio
   =================================================== */

/* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================================
   HEADER MODERNO (estilo PedidosYa)
   =================================================== */
.header {
    background: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF5A00;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    cursor: pointer;
}

.logo-dot {
    color: #FF7A00;
}

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.search-box:focus-within {
    background: white;
    border-color: #FF5A00;
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.1);
}

.search-box i {
    color: #999;
    font-size: 1rem;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 0.95rem;
    outline: none;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-mis-pedidos {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-mis-pedidos:hover {
    color: #FF5A00;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

.social-icon {
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: #FF5A00;
}

.user-avatar-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 40px;
    transition: all 0.3s;
    position: relative;
}

.user-avatar-desktop:hover {
    background: #FF5A00;
    color: white;
}

.user-avatar-desktop:hover .avatar-name {
    color: white;
}

.avatar-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
    display: none;
}

.avatar-dropdown.active {
    display: block;
}

.avatar-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    transition: background 0.2s;
    cursor: pointer;
}

.avatar-dropdown a i {
    width: 20px;
    color: #FF5A00;
}

.avatar-dropdown a:hover {
    background: #FFF5EB;
}

.user-avatar-mobile {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.user-avatar-mobile img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

/* MENÚ MÓVIL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 70px 25px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.mobile-nav-link i {
    width: 24px;
    color: #FF5A00;
}

.mobile-nav-link:hover {
    color: #FF5A00;
}

.mobile-social {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

.mobile-social .social-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s;
    text-decoration: none;
}

.mobile-social .social-icon:hover {
    background: #FF5A00;
    color: white;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* MODALES */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* HERO */
.hero {
    text-align: center;
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #FFF5EB 0%, #FFFFFF 100%);
}

.hero h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* NEGOCIOS SECTION */
.negocios-section {
    padding: 40px 0 80px;
}

.negocios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.negocio-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.negocio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.negocio-logo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.negocio-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.negocio-logo .placeholder-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF5A00;
    background: linear-gradient(135deg, #FFF5EB 0%, #FFE4D6 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.negocio-info {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.negocio-nombre {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.negocio-estado-rubros {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.estado-abierto, .estado-cerrado {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
}

.estado-abierto {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.estado-cerrado {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.rubros-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rubro-tag {
    background: #FFF5EB;
    color: #FF5A00;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
}

.rubro-tag.rubro-mas {
    background: #f0f0f0;
    color: #666;
}

.negocio-horario {
    font-size: 0.7rem;
    color: #888;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* BANNERS CARRUSEL */
.banners-section {
    margin: 20px 0 30px;
    width: 100%;
    display: block;
}

.banner-carousel {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    flex: 0 0 100%;
    position: relative;
    cursor: pointer;
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-titulo {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: #FF5A00;
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #FF5A00;
    width: 24px;
    border-radius: 10px;
}

/* FORMULARIOS */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF5A00;
    box-shadow: 0 0 0 2px rgba(255, 90, 0, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: #FF5A00;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #e04e00;
    transform: translateY(-2px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-outline {
    background: transparent;
    border: 1px solid #FF5A00;
    color: #FF5A00;
}

.btn-outline:hover:not(:disabled) {
    background: #FF5A00;
    color: white;
}

.btn-block {
    width: 100%;
}

/* LOADING */
.loading {
    text-align: center;
    padding: 50px;
    color: #888;
}

.spinner {
    width: 35px;
    height: 35px;
    border: 3px solid #f0f0f0;
    border-top-color: #FF5A00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* FOOTER */
.footer {
    background: white;
    border-top: 1px solid #eee;
    padding: 25px 0;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
}

/* MIS PEDIDOS */
.pedidos-screen {
    padding: 20px 0 40px;
    min-height: 100vh;
    background: #f8f9fa;
}

.pedidos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.pedidos-header .btn-back {
    background: white;
    border: 1px solid #FF5A00;
    color: #FF5A00;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.pedidos-header .btn-back:hover {
    background: #FF5A00;
    color: white;
}

.pedidos-header h2 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0;
}

.total-gastado {
    background: linear-gradient(135deg, #FF5A00, #FF7A00);
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.total-gastado strong {
    font-size: 1rem;
}

.pedidos-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: white;
    padding: 5px;
    border-radius: 50px;
    display: inline-flex;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.pedidos-tab {
    background: none;
    border: none;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    border-radius: 40px;
    transition: all 0.2s;
}

.pedidos-tab.active {
    background: #FF5A00;
    color: white;
}

.pedidos-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pedido-card {
    background: white;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.2s;
    cursor: pointer;
}

.pedido-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pedido-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.pedido-numero {
    font-weight: 700;
    color: #FF5A00;
    font-size: 0.85rem;
}

.pedido-estado {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #FFF3CD;
    color: #D97706;
}

.pedido-estado.entregado {
    background: #D1FAE5;
    color: #059669;
}

.pedido-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pedido-fecha, .pedido-negocio, .pedido-productos {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pedido-total {
    font-weight: 700;
    color: #FF5A00;
    font-size: 0.85rem;
    margin-top: 6px;
    text-align: right;
}

.pedido-card-footer {
    text-align: right;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.btn-ver-detalle {
    background: none;
    border: none;
    color: #FF5A00;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.btn-ver-detalle:hover {
    gap: 10px;
}

/* MI CUENTA */
.cuenta-screen {
    padding: 20px 0 40px;
    min-height: 100vh;
    background: #f8f9fa;
}

.cuenta-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.cuenta-header .btn-back {
    background: white;
    border: 1px solid #FF5A00;
    color: #FF5A00;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cuenta-header .btn-back:hover {
    background: #FF5A00;
    color: white;
}

.cuenta-header h2 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0;
}

.cuenta-card {
    background: white;
    border-radius: 24px;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cuenta-avatar {
    text-align: center;
    margin-bottom: 25px;
}

.cuenta-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF5A00;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cuenta-card .form-group {
    margin-bottom: 14px;
}

.cuenta-card .form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.cuenta-card .form-group input,
.cuenta-card .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: white;
}

.cuenta-card .form-group input:focus,
.cuenta-card .form-group select:focus {
    outline: none;
    border-color: #FF5A00;
    box-shadow: 0 0 0 3px rgba(255,90,0,0.1);
}

.cuenta-card .btn-primary {
    margin-top: 10px;
    padding: 12px;
    font-size: 0.9rem;
}

/* ===================================================
   ESCRITORIO (estándar)
   =================================================== */
@media (min-width: 769px) {
    .negocios-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .user-avatar-mobile {
        display: none !important;
    }
    
    .user-avatar-desktop {
        display: flex !important;
    }
    
    .menu-toggle {
        display: none !important;
    }
}

/* ===================================================
   MÓVIL (vista optimizada)
   =================================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .user-avatar-desktop {
        display: none !important;
    }
    
    .user-avatar-mobile {
        display: flex !important;
    }
    
    .nav-desktop {
        display: none !important;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .search-container {
        margin: 0 8px;
    }
    
    .search-box {
        padding: 6px 10px;
    }
    
    .search-box input {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .hero {
        padding: 35px 0 30px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    /* NEGOCIOS MÓVIL - OCUPAN MÁS ESPACIO */
    .negocios-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .negocio-card {
        padding: 12px;
        align-items: center;
        width: 100%;
    }
    
    .negocio-logo {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }
    
    .negocio-info {
        padding: 0 0 0 14px;
        gap: 8px;
        flex: 1;
    }
    
    .negocio-nombre {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0;
    }
    
    .negocio-estado-rubros {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .estado-abierto, .estado-cerrado {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    .rubro-tag {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    /* Mostrar horario en móvil */
    .negocio-horario {
        display: flex;
        font-size: 0.65rem;
        color: #888;
        margin-top: 2px;
    }
    
    /* CARRUSEL MÓVIL */
    .banner-carousel {
        border-radius: 12px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .banner-titulo {
        font-size: 0.7rem;
        bottom: 10px;
        left: 10px;
        padding: 4px 10px;
        white-space: normal;
        max-width: 70%;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    /* MIS PEDIDOS MÓVIL */
    .pedidos-header {
        flex-wrap: wrap;
    }
    
    .pedidos-header h2 {
        font-size: 1.1rem;
    }
    
    .total-gastado {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .total-gastado strong {
        font-size: 0.85rem;
    }
    
    .pedidos-tab {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .pedido-card {
        padding: 12px;
    }
    
    .pedido-numero {
        font-size: 0.8rem;
    }
    
    .pedido-fecha, .pedido-negocio, .pedido-productos {
        font-size: 0.7rem;
    }
    
    /* MI CUENTA MÓVIL */
    .cuenta-header h2 {
        font-size: 1.1rem;
    }
    
    .cuenta-card {
        padding: 20px;
    }
    
    .cuenta-avatar img {
        width: 70px;
        height: 70px;
    }
    
    .cuenta-card .form-group input,
    .cuenta-card .form-group select {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .cuenta-card .form-group label {
        font-size: 0.75rem;
    }
    
    /* MODALES MÓVIL */
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .negocio-logo {
        width: 70px;
        height: 70px;
    }
    
    .negocio-nombre {
        font-size: 1rem;
    }
    
    .rubro-tag {
        font-size: 0.6rem;
        padding: 2px 8px;
    }
    
    .estado-abierto, .estado-cerrado {
        font-size: 0.6rem;
        padding: 2px 8px;
    }
}

/* TOASTS */
.toast-success, .toast-error, .toast-info {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 9999;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .toast-success, .toast-error, .toast-info {
        padding: 10px 16px;
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
        max-width: 90%;
        width: auto;
        line-height: 1.4;
        bottom: 80px;
    }
}

/* EFECTOS ADICIONALES */
.coincidencia {
    background-color: #FFF3CD;
    color: #FF5A00;
    font-weight: 600;
    padding: 0 2px;
    border-radius: 4px;
}

.sin-negocios {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 24px;
    border: 1px solid #eee;
}

.sin-negocios i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 15px;
}

.error-mensaje {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 24px;
    border: 1px solid #fee2e2;
}

.error-mensaje p {
    color: #ef4444;
    margin-bottom: 15px;
}
.notificaciones-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #FF5A00;
    color: white;
    font-weight: 600;
}

.btn-cerrar-notif-mobile {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-cerrar-notif-mobile:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.btn-cerrar-notif-mobile:active {
    transform: scale(0.95);
}
.btn-eliminar {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-eliminar:hover {
    background: #fee2e2;
    color: #dc2626;
}

.btn-eliminar:active {
    transform: scale(0.95);
}