/* ========== BOTÓN INFORMACIÓN TIENDA ========== */
.btn-info-empresa {
    background: transparent;
    border: 1px solid #333;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    cursor: pointer;
    color: #fff;
    margin: 10px 0;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-info-empresa:hover {
    background: #1a1a1a;
    border-color: #555;
}

/* ========== MODAL INFORMACIÓN TIENDA ========== */
.modal-info {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-info-content {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
}

.modal-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #2a2a2a;
    background: #0a0a0a;
}

.modal-info-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.modal-info-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
}

.modal-info-close:hover {
    color: #fff;
}

.modal-info-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.info-row {
    padding: 10px 0;
    color: #cccccc;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #1a1a1a;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row i {
    width: 24px;
    color: #888;
    font-size: 1rem;
}

.info-row a {
    color: #fff;
    text-decoration: none;
}

.info-row a:hover {
    text-decoration: underline;
}

.info-row.aviso {
    background: #1a1a1a;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #dddddd;
    border-left: 3px solid #888;
}

.info-row.horario {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.modal-info-footer {
    padding: 12px 20px;
    border-top: 1px solid #2a2a2a;
    text-align: center;
}

.btn-cerrar-modal {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 8px 24px;
    border-radius: 30px;
    cursor: pointer;
    color: #fff;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.btn-cerrar-modal:hover {
    background: #2a2a2a;
}